{% 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 %} {% block head_title %} Confirm Email Address {% endblock head_title %} {% block content %} {% include "allauth/elements/heliport_heading.html" with text="Confirm Email Address" %} {% if confirmation %} {% if can_confirm %} {% with confirmation.email_address.email as email %}

Please confirm that {{ email }} is an email address for user {% user_display confirmation.email_address.user %}.

{% endwith %}
{% csrf_token %}
{% else %}

Unable to confirm {{ email }} because it is already confirmed by a different account.

{% endif %} {% else %}

This email confirmation link expired or is invalid. Please issue a new email confirmation request.

{% endif %} {% endblock content %}