aboutsummaryrefslogtreecommitdiff
path: root/wqflask/flask_security/templates/security/reset_password.html
blob: e6fc3f58199cadd503976bd12613b53f2872e7ee (plain)
1
2
3
4
5
6
7
8
9
10
{% 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" %}