{% if pw_inactive and not pw_token %}
You may not currently access this page
{% else %} {% if pw_inactive %}
Your password has expired. Please set a new password
{% endif %}
{% if not pw_inactive %}{% include 'auth-form-user-identifier.html' %}{% endif %}

Change Password

{% if success == 'change_password' %}
Your password was changed successfully.
{% endif %} {% csrf_token %} {% if pw_inactive %} {% endif %} {% for error in change_password_form.non_field_errors %}
{{ error }}
{% endfor %}
{% for error in change_password_form.current_password.errors %}
{{ error }}
{% endfor %}
{{ change_password_form.current_password }}
{% for error in change_password_form.new_password.errors %}
{{ error }}
{% endfor %}
{{ change_password_form.new_password }}
{% for error in change_password_form.new_password_repeat.errors %}
{{ error }}
{% endfor %}
{{ change_password_form.new_password_repeat }}
{% if pw_inactive %} {% include 'auth-back-to-login-btn.html' %} {% endif %} {% endif %}