{% extends "widget/base.html" %} {% load i18n %} {% load webcms_form_tags %} {% block page_title %} {% if validlink %} {% trans "Enter new password" %} {% else %} {% trans 'Password reset unsuccessful' %} {% endif %} {% endblock %} {% block breadcrumbs %}
  • {% if validlink %}{% trans "Enter new password" %}{% else %}{% trans 'Password reset unsuccessful' %}{% endif %}
  • {% endblock %} {% block content %} {% if validlink %}
    {% csrf_token %}

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

    {% trans "Enter new password" %}

    {{ form.new_password1|form_field }} {{ form.new_password2|form_field }}

    * {% trans "Required fields" %}

    {% form_button "submit" "Change my password" %}
    {% else %}

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

    {% endif %} {% endblock %}