{% 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 account widget_tweaks %} {% block head_title %} Password Reset {% endblock head_title %} {% block content %} {% include "allauth/elements/heliport_heading.html" with text="Password Reset" %} {% if user.is_authenticated %} {% include "account/snippets/already_logged_in.html" %} {% endif %}

Enter your email address in the form below. You will receive an email with a link to reset your password.

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

In case of problems, do not hesitate to contact us.

{% endblock content %}