{% extends "admin/master.html" %} {% from "security/_macros.html" import render_field_with_errors, render_field %} {% block body %} {{ super() }}

{{ _fsdomain('Change password') }}

{{ 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, class="btn btn-primary") }}
{% endblock %}