Spaces:
Sleeping
Sleeping
File size: 1,247 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 28 29 30 31 32 33 34 35 36 37 38 39 |
{% extends "base.html" %}
{% block content %}
<div class="card">
<h2>Reset Password</h2>
<p class="subtitle">
Check your email for the 6-digit reset code, then set a new password.
</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: 12px;">
<label>Reset Code</label>
<input type="text" name="code" maxlength="6" required
style="width: 100%; padding: 8px; margin-bottom: 12px;">
<label>New Password</label>
<input type="password" name="password" required
style="width: 100%; padding: 8px; margin-bottom: 12px;">
<label>Confirm New Password</label>
<input type="password" name="confirm_password" required
style="width: 100%; padding: 8px; margin-bottom: 16px;">
<button type="submit">Reset Password</button>
</form>
<p class="subtitle" style="margin-top: 12px;">
Already reset it?
<a href="{{ url_for('login') }}">Back to login</a>.
</p>
</div>
{% endblock %}
|