first commit
This commit is contained in:
20
app/templates/auth_forgot_password.html
Normal file
20
app/templates/auth_forgot_password.html
Normal file
@@ -0,0 +1,20 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-6 col-lg-5">
|
||||
<h1 class="h3 mb-3">Forgot password</h1>
|
||||
<form method="post" class="card card-body">
|
||||
<p class="text-muted">Enter your email address and we’ll send you a password reset link.</p>
|
||||
<div class="mb-3">
|
||||
<label class="form-label">Email</label>
|
||||
<input class="form-control" name="email" type="email" autocomplete="email" required />
|
||||
</div>
|
||||
<div class="d-flex gap-2">
|
||||
<button class="btn btn-primary" type="submit">Send reset link</button>
|
||||
<a class="btn btn-outline-secondary" href="{{ url_for('auth.login') }}">Back to login</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user