{% extends '_base.html' %} {% load static %} {% load i18n %} {% block content %} {% trans 'Change Password' as operation %} {% include 'user/header.html' with title=operation %}
{% for message in messages %} {% if message.level == DEFAULT_MESSAGE_LEVELS.ERROR %}
{{ message }}
{% else %} {% if message.level == DEFAULT_MESSAGE_LEVELS.INFO %}
{{ message }}
{% endif %} {% endif %} {% endfor %}

{% trans 'Change Password' %}

{% if user_name %} {% else %} {% endif %} {% if require_old_password %} {% endif %} {% if self_password_reset %}
{% trans 'Forget your password?' %}
{% endif %} {% csrf_token %}
{% include '_components/ppolicy.html' with admin=False %}
{% endblock %}