{% extends "registration/registration_base.html" %} {% load url from future %} {% load i18n %} {% block masthead %} {% if validlink %}

{% trans "Enter new password" %}

{% else %}

{% trans "Error resetting password" %}

{% endif %} {% endblock %} {% block content %} {% if validlink %}

{% trans "Please enter your new password twice." %}

{% csrf_token %} {{ form.non_field_errors }} {% for field in form %}
{{ field.errors }} {{ field.label_tag }} {{ field }}
{% endfor %}
{% else %}

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

{% endif %} {% endblock %}