AD232025's picture
Upload 17 files
21a8272 verified
raw
history blame contribute delete
735 Bytes
{% 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 %}