{% extends "site_base.html" %} {% load i18n %} {% load account_tags %} {% block metas %} {% if token_fail %}{% trans "Bad Token" %}{% else %}{% trans "Change Password" %}{% endif %} - {{ settings.SITE_TITLE }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% include "app_forum/elements/forum-top.html" %} {% 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 %} {% if form %}
{% csrf_token %} {{ form.as_p }}
{% else %}
{% trans 'Your password is now changed.' %}
{% endif %} {% endif %}
{% endblock %}