{% extends "../body.html" %} {% load util %} {% load static %} {% block content %}
{% if form.errors %} {% for field in form %} {% for error in field.errors %}
{{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% endif %}
{% csrf_token %}
  • Your password can’t be too similar to your other personal information.
  • Your password can’t be a commonly used password.
  • Your password can’t be entirely numeric.
  • Your password must contain at least 10 characters.
{% endblock %}