{% extends "account/base_entrance.html" %} {% load blocktrans trans from i18n %} {% load crispy from crispy_forms_tags %} {% block head_title %} {% trans "Change Password" %} {% endblock head_title %} {% block content_title_text %} {% if token_fail %} {% trans "Error: expired link" %} {% else %} {% trans "Change password" %} {% endif %} {% endblock content_title_text %} {% block content_body %} {% if token_fail %}

{% url 'account_reset_password' as url_reset %} {% blocktrans trimmed with url_reset=url_reset %} The password reset link was invalid, possibly because it has already been used. Please request a password reset again. {% endblocktrans %}

{% else %}
{% csrf_token %} {{ form|crispy }} {{ redirect_field }}
{% endif %} {% endblock content_body %}