{% extends "admin/layout.html" %} {% set active_menu_item = ['dashboard', 'overview'] %} {% block title %}{% trans "Change Password" %}{% endblock %} {% block contents %}

{% trans "Change Password" %}

{%- if errors %}

{% trans "Error when changing the password" %}

{%- for error in errors %}

{{ error|e }}

{%- endfor %}

{% trans "Hide message" %}...

{%- endif %}
{% trans "Old Password" %}
{{ h.input_field('old_password', type='password') }}
{% trans "New Password" %}
{{ h.input_field('new_password', type='password') }}
{% trans "Repeat" %}
{{ h.input_field('check_password', type='password') }}
{% endblock %}