13 lines
521 B
HTML
13 lines
521 B
HTML
{% extends "base.html" %}
|
|
{% from "security/_macros.html" import render_field_with_errors, render_field %}
|
|
|
|
{% block content %}
|
|
{% include "security/_messages.html" %}
|
|
<h1>{{ _fsdomain('Send password reset instructions') }}</h1>
|
|
<form action="{{ url_for_security('forgot_password') }}" method="POST" name="forgot_password_form">
|
|
{{ forgot_password_form.hidden_tag() }}
|
|
{{ render_field_with_errors(forgot_password_form.email) }}
|
|
{{ render_field(forgot_password_form.submit, class="button") }}
|
|
</form>
|
|
{% endblock %}
|