{% if pw_inactive and not pw_token %}
You may not currently access this page
{% else %}
{% if not pw_inactive %}{% include 'auth-form-user-identifier.html' %}{% endif %}
Change Password
{% if change_password_form.new_password.errors|length == 0 and change_password_form.new_password.errors|length == 0 and change_password_form.new_password_repeat.errors|length == 0 and change_password_form.non_field_errors|length == 0 %} {% if pw_inactive %}
Your password has expired. Please set a new password
{% endif %} {% else %} {% for error in change_password_form.current_password.errors %}
{{ error }}
{% endfor %} {% for error in change_password_form.new_password.errors %}
{{ error }}
{% endfor %} {% for error in change_password_form.new_password_repeat.errors %}
{{ error }}
{% endfor %} {% for error in change_password_form.non_field_errors %}
{{ error }}
{% endfor %} {% endif %} {% if success == 'change_password' %}
Your password was changed successfully.
{% endif %} {% csrf_token %} {% if pw_inactive %}
{% endif %}
Current Password:
{{ change_password_form.current_password }}
New Password:
{{ change_password_form.new_password }}
Repeat New Password:
{{ change_password_form.new_password_repeat }}
Show Passwords:
{% if pw_inactive %}
{% include 'auth-back-to-login-btn.html' %}
{% endif %} {% endif %}