{% extends 'base.html' %} {% load i18n static %} {% load removeSpace_filter %} {% block title %}Change Password Page{% endblock title %} {% block head_block %} {% endblock %} {% block topbar %} REIndicator homepage {% if user.is_authenticated %}
{% if not user|has_group:"Hiatus" %}
Next Webinar: Friday, April 26, 2PM ET.
Industry Trends Part 3
Learn About Version 3.7
{% endif %}
Welcome, {% firstof user.get_short_name user.get_username %}.
{% if not user|has_group:"Hiatus" %} {% endif %} {% else %} {% endif %} {% endblock %} {% block content %}

Change Password

Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly.

{% csrf_token %}
{% if form.errors %}

{% blocktrans count form.errors.items|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

{% endif %}
{{ form.old_password.errors }}
{{ form.old_password }}
{{ form.new_password1.errors }}
{{ form.new_password1 }}
  • Your password can't be too similar to your other personal information.
  • Your password must contain at least 8 characters.
  • Your password can't be a commonly used password.
  • Your password can't be entirely numeric.
{{ form.new_password2.errors }}
{{ form.new_password2 }}
{% endblock content %}