{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Set New Password" %}{% endblock %} {% block content %}
{% if token_fail %} {% trans "Invalid Reset Link" %} {% else %} {% trans "Set New Password" %} {% endif %} {% if token_fail %} {% trans "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." %} {% else %} {% trans "Please enter your new password twice so we can verify you typed it in correctly." %} {% endif %} {% if not token_fail %}
{% csrf_token %} {% if form.non_field_errors %} {{ form.non_field_errors }} {% endif %}
{{ form.password1.label }} {% if form.password1.errors %}
{{ form.password1.errors }}
{% endif %}
{{ form.password2.label }} {% if form.password2.errors %}
{{ form.password2.errors }}
{% endif %}
{% trans "Change Password" %}
{% else %} {% trans "Request New Reset Link" %} {% endif %}
{% endblock %}