{% extends "core/base.html" %} {% load i18n material_form %} {% block browser_title %}{% trans "Change password" %}{% endblock %} {% block no_page_title %}{% endblock %} {% block content %} {% if token_fail %}
error_outline {% blocktrans %}Bad token{% endblocktrans %}

{% 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 %}

{% blocktrans %} If this issue persists, please contact one of your site administrators {% endblocktrans %}

{% include "core/partials/admins_list.html" %}
{% else %}
{% if form %}
{% trans "Change password" %}
{% csrf_token %} {% form form=form %}{% endform %}
{% trans "Change password" as caption %} {% include "core/partials/save_button.html" with caption=caption icon="priority_high" %}
{% else %}

success {% blocktrans %} Your password is now changed! {% endblocktrans %}

{% endif %} {% endif %} {% endblock %}