{% extends "account/base_entrance.html" %} {% comment %} SPDX-FileCopyrightText: 2024 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load allauth widget_tweaks %} {% block head_title %} Change Password {% endblock head_title %} {% block content %} {% if token_fail %} {% include "allauth/elements/heliport_heading.html" with text="Bad Token" %} {% else %} {% include "allauth/elements/heliport_heading.html" with text="Change Password" %} {% endif %} {% if token_fail %}

Invalid password reset link. Please request a new password reset.

{% else %}
{% csrf_token %} {% for field in form %}
{{ field|add_class:"form-control" }} {% include "allauth/elements/heliport_form_errors.html" with errors=field.errors %}
{% endfor %}
{% endif %} {% endblock content %}