aboutsummaryrefslogtreecommitdiff
path: root/wqflask/flask_security/templates/security/change_password.html
blob: 8ee3eb730b3d937a72a0500764bf0ec15a3bb7dc (plain)
1
2
3
4
5
6
7
8
9
10
11
{% from "security/_macros.html" import render_field_with_errors, render_field %}
{% include "security/_messages.html" %}
<h1>Change password</h1>
<form action="{{ url_for_security('change_password') }}" method="POST" name="change_password_form">
  {{ change_password_form.hidden_tag() }}
  {{ render_field_with_errors(change_password_form.password) }}
  {{ render_field_with_errors(change_password_form.new_password) }}
  {{ render_field_with_errors(change_password_form.new_password_confirm) }}
  {{ render_field(change_password_form.submit) }}
</form>