{% extends "base.html" %} {% block title %}Choose New Password | Testpoint{% endblock %} {% block content %}
{% if token_fail %}

Invalid reset link

This password-reset link has expired or has already been used.

{% else %}

Choose a new password

Use a strong password you do not use on another site.

{% endif %}
{% if token_fail %}Request another link{% else %}
{% csrf_token %}{% if form.non_field_errors %}{% endif %}
{% for error in form.password1.errors %}

{{ error }}

{% endfor %}
{% for error in form.password2.errors %}

{{ error }}

{% endfor %}
{% endif %}
{% include "components/footer.html" %}{% endblock %}