{% 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 %}
{{ password_policy_message }}
{% endif %}
{% else %}
{% trans 'Password must meet following requirements.' %}
| {% 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 userName' %} | {{ 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 }} |
{% 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' %}