{% extends "base.html" %} {% load static %} {% load i18n %} {% load allauth account %} {% block head_title %} {% trans "Change Password" %} {% endblock head_title %} {% block content %}

{% if token_fail %} {% trans "Bad Token" %} {% else %} {% trans "Change Password" %} {% endif %}

{% if token_fail %} {% url 'account_reset_password' as passwd_reset_url %}

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

{% else %} {% url 'account_set_password' as action_url %}
{% csrf_token %} {{ redirect_field }}
{% for field in form.visible_fields %}
{{ field.label_tag }} {{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
{% endif %}
{% endblock content %} {% block extra_body %} {{ block.super }} {% endblock extra_body %}