{% extends 'accounts/base.html' %} {% block title %}Reset Password{% endblock title %} {% block content %}
{% if not validlink %}
Invalid Request.
{% else %}
{% if form.errors %}
{{form.errors.new_password1}}
{{form.errors.new_password2}}
{% endif %}

Set New Password

{% csrf_token %}

{{form.new_password1.label}} {{form.new_password1}}

{{form.new_password2.label}} {{form.new_password2}}

  1. Your password can’t be too similar to your other personal information.

  2. Your password must contain at least 8 characters.

  3. Your password can’t be a commonly used password.

  4. Your password can’t be entirely numeric.
{% endif %}
{% endblock content %} {% block scripts %} {% endblock scripts %}