{% extends 'admin/master.html' %} {% from "security/_macros.html" import render_field_with_errors, render_field, render_button %} {% include "security/_messages.html" %} {% block head %} {% endblock head %} {% block page_body %}
{{ change_password_form.hidden_tag() }} {{ render_field_with_errors(change_password_form.password, 'fa fa-lock') }} {{ render_field_with_errors(change_password_form.new_password, 'fa fa-lock') }} {{ render_field_with_errors(change_password_form.new_password_confirm, 'fa fa-lock') }}
{{ render_button(change_password_form.submit, class="btn btn-primary btn-block btn-flat") }}

Back to the Admin

{% endblock page_body %}