{% load i18n static %} {% trans 'Enter new password' %} | {{ site_title|default:"Django Spectra" }}
{% if validlink %}

{% trans 'Enter New Password' %}

{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}

{% if form.errors %} {% endif %}
{% csrf_token %}
{{ form.new_password1 }} {% if form.new_password1.help_text %}
{{ form.new_password1.help_text }}
{% endif %} {% if form.new_password1.errors %}
    {% for error in form.new_password1.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ form.new_password2 }} {% if form.new_password2.help_text %}
{{ form.new_password2.help_text }}
{% endif %} {% if form.new_password2.errors %}
    {% for error in form.new_password2.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% else %}

{% trans 'Password Reset Failed' %}

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

{% endif %}