{% extends "registration/registration_base.html" %} {% block page_title %}Change password{% endblock %} {% block javascript_head %} {% endblock %} {% block content %}
{% csrf_token %} {{ form.non_field_errors }}
Password
{{ form.new_password1 }}
Confirm
{{ form.new_password2 }}
{% if form.new_password1.errors %}
{{ form.new_password1.errors }}
{% endif %} {% if form.new_password2.errors %}
{{ form.new_password2.errors }}
{% endif %}
 
 
  • Password must be longer than 6 characters.
  • Password must contain at least 1 uppercase letter.
  • Password must contain at least 1 lowercase letter.
  • Password must contain at least 1 digit.
  • Password cannot be based on a common sequence or word.
 
{{ form.tos }}
By clicking you acknowledge receipt and agreement to the License and Terms of Service
{% if form.tos.errors %}
You must agree to the Terms of Service
{% endif %}
 
 
 
 
{% endblock %}