{% extends "allauth_ens/base.html" %} {% load i18n %} {% block title %}{% trans "Change Password" %}{% endblock %} {% block header-title %}{% trans "Change Password" %}{% endblock %} {% block content %}
{% 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 %}

{% elif form %}
{% include "allauth_ens/block-form.html" with form=form %}
{% else %}

{% trans "Your password is now changed." %}

{% endif %}
{% endblock %}