mirror of
https://github.com/wassname/flask-security.git
synced 2026-06-27 16:10:11 +08:00
10 lines
538 B
HTML
10 lines
538 B
HTML
{% from "security/_macros.html" import render_field_with_errors, render_field %}
|
|
{% include "security/_messages.html" %}
|
|
<h1>Reset password</h1>
|
|
<form action="{{ url_for_security('reset_password', token=reset_password_token) }}" method="POST" name="reset_password_form">
|
|
{{ reset_password_form.hidden_tag() }}
|
|
{{ render_field_with_errors(reset_password_form.password) }}
|
|
{{ render_field_with_errors(reset_password_form.password_confirm) }}
|
|
{{ render_field(reset_password_form.submit) }}
|
|
</form>
|
|
{% include "security/_menu.html" %} |