{% extends "base.html" %} {% block title %}Password Reset Confirmation{% endblock %} {% block header %}

Password Reset Confirmation{% endblock %} {% block mainbody %} {% if validlink %}
 
Please set your new passwords
Please enter your new password twice so we can verify you typed it in correctly

{% if form.new_password1.errors %} {{ form.new_password1.errors }} {% endif %}

{% if form.new_password2.errors %} {{ form.new_password2.errors }} {% endif %}

 
{% else %}
 
The password reset link was invalid, possibly because it has already been used. Please request a new password reset.
 
Back to the home page
 
{% endif %} {% endblock %}