mirror of
https://github.com/wassname/flask-security.git
synced 2026-07-29 11:20:24 +08:00
8 lines
428 B
HTML
8 lines
428 B
HTML
{% from "security/macros.html" import render_field_with_errors, render_field %}
|
|
{% include "security/messages.html" %}
|
|
<h1>Send reset password instructions</h1>
|
|
<form action="{{ url_for('flask_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) }}
|
|
</form> |