{% extends "registration/base.html" %} {% load i18n %} {% block title %} {{ block.super }} | {% trans "Password reset" %} {% endblock %} {% block big_message %} {% if validlink %} {% trans "Password reset" %} {% else %} {% trans "Ooops!" %} {% endif %} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block content %} {% if validlink %}
{% csrf_token %}
{% blocktrans %}

Please enter your new password twice so we can verify you typed it in correctly.

{% endblocktrans %}

{{ form.new_password1 }}

{{ form.new_password1.errors }}

{{ form.new_password2 }}

{{ form.new_password2.errors }}
{% else %}
{% blocktrans %}

The password reset link was invalid, possibly because it has already been used. Please {% endblocktrans %} {% trans "request a new password reset" %}

{% endif %} {% endblock %}