{# _auth_main_forgot_password.html — forgot-password form column. Renders
standalone for HTMX fragment responses. Expected context: csrf_token, error, success, app_name, is_production #} {% import "_partials/_auth_macros.html" as auth %}
{{ auth.kicker(app_name, "Forgot password") }}

Reset password

Enter your email — we'll send a reset link.

{% if success %} {% set flash = { "kind": "ok", "message": "If an account with that email exists, a password reset link has been sent." } %}
{% include "_partials/_flash.html" %}
{% else %} {% if error %} {% set flash = { "kind": "err", "message": error } %}
{% include "_partials/_flash.html" %}
{% endif %}
{% endif %}

Remember your password? Log in