push
This commit is contained in:
25
templates/auth/forgot.html
Normal file
25
templates/auth/forgot.html
Normal file
@@ -0,0 +1,25 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Password reset - MikroMon{% endblock %}
|
||||
{% block content %}
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-12 col-md-6 col-lg-5">
|
||||
<div class="card shadow-sm">
|
||||
<div class="card-body p-4">
|
||||
<h1 class="h4 mb-2"><i class="fa-solid fa-key me-2"></i>Password reset</h1>
|
||||
<div class="text-muted small mb-3">Enter your email. If the account exists, we'll send a reset link.</div>
|
||||
<form method="post" novalidate>
|
||||
{{ form.hidden_tag() }}
|
||||
<div class="mb-3">
|
||||
<label class="form-label">Email</label>
|
||||
{{ form.email(class_="form-control", placeholder="email@example.com") }}
|
||||
</div>
|
||||
<button class="btn btn-primary w-100" type="submit">Send link</button>
|
||||
</form>
|
||||
<div class="text-muted small mt-3">
|
||||
<a href="{{ url_for('auth.login') }}"><i class="fa-solid fa-arrow-left me-1"></i>Back to login</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user