Spaces:
Sleeping
Sleeping
File size: 735 Bytes
21a8272 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
{% extends "base.html" %}
{% block content %}
<div class="card">
<h2>Forgot Password</h2>
<p class="subtitle">
Enter your account email. If it exists, we’ll send a 6-digit reset code.
</p>
<form method="POST">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<label>Email</label>
<input type="email" name="email" required
style="width: 100%; padding: 8px; margin-bottom: 16px;">
<button type="submit">Send Reset Code</button>
</form>
<p class="subtitle" style="margin-top: 12px;">
Remembered your password?
<a href="{{ url_for('login') }}">Back to login</a>.
</p>
</div>
{% endblock %}
|