{% extends '_base.html' %} {% load static %} {% load i18n %} {% block content %} {% if admin %} {% include '_components/header.html' %} {% else %} {% include '_components/header.html' with no_nav=True %} {% endif %}
{% if error_message %}
{{ error_message }}
{% endif %} {% if info_message %}
{{ info_message }}
{% endif %}

{% trans 'Change Password' %}

{% if resource %} {% elif user_name %} {% else %} {% endif %} {% if not admin %} {% if not is_reset %} {% if self_password_reset %}
{% trans 'Forget your password?' %}
{% endif %} {% endif %} {% endif %} {% csrf_token %} {% if admin %} {% include '_components/select_backends.html' with backends=resource.backends %} {% endif %}
{% if password_policy_message %}
{{ password_policy_message }}
{% else %}

{% trans 'Password Policy' %}

{% trans 'Maximum length' %}{{ password_policy.max }}
{% trans 'Minimum length' %}{{ password_policy.min }}
{% trans 'Uppercase letters' %}{{ password_policy.upper }}
{% trans 'Lowercase letters' %}{{ password_policy.lower }}
{% trans 'Symbol characters' %}{{ password_policy.symbol }}
{% trans 'Digit characters' %}{{ password_policy.digit }}
{% trans 'Complexity' %}{{ password_policy.complexity }}
{% trans 'Prohibited characters' %}{{ password_policy.prohibited }}
{% trans 'Must NOT contain name' %}{{ password_policy.must_not_contain_name }}
{% trans 'Must be different from old password' %}{{ password_policy.must_be_different_from_old }}
{% trans 'Must be various' %}{{ password_policy.must_be_various }}
{% trans 'Must be disorder' %}{{ password_policy.must_be_disorder }}
{% endif %}

{% trans 'The password satisfies policy' %} {% if admin %}
{% trans 'Password enterd by Administrators is only checked for length.' %} {% endif %}

{% trans 'Please use only letters(a..z and A..Z), numbers(0..9) and allowed special characters' %}

{% trans 'The password is too long' %}

{% trans 'The password is too short' %}

{% trans 'The password does not contain sufficient uppercase letters' %}

{% trans 'The password does not contain sufficient lowercase letters' %}

{% trans 'The password does not contain sufficient symbol characters' %}

{% trans 'The password does not contain sufficient digit characters' %}

{% trans 'The password does not meet the complexity requirements' %}

{% trans 'The password contains prohibited characters' %}

{% trans 'The password contains user name' %}

{% trans 'The password is same as old password' %}

{% trans 'The password does not contain enough different characters' %}

{% trans 'The password is too simplistic/systematic' %}

{% trans 'Password and Password (Confirm) does not match' %}

{% endblock %}