23 lines
902 B
HTML
23 lines
902 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Forgot Password · myboker.org{% endblock %}
|
|
{% block content %}
|
|
|
|
<div class="form-shell narrow">
|
|
<form class="panel form-card" method="post">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
|
<div>
|
|
<p class="eyebrow">Account recovery</p>
|
|
<h1 style="font-size:28px;margin-bottom:8px;">Forgot password</h1>
|
|
<p class="muted-text" style="margin-bottom:8px;">Enter your email and we'll send a reset link if an account exists.</p>
|
|
</div>
|
|
<label>
|
|
<span>Email</span>
|
|
<input type="email" name="email" autocomplete="email" required>
|
|
</label>
|
|
<button class="btn btn--primary" type="submit">Send reset link</button>
|
|
<a class="btn btn--ghost" href="{{ url_for('account.login') }}">Back to login</a>
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %}
|