{% extends "base.html" %} {% load i18n %} {% load account %} {% block title %}{% trans "Confirm Email Address" %}{% endblock %} {% block content %}
{# Centering the main header content #}

{% trans "Account Verification" %}

{% trans "Verify your email to secure your account and unlock full features." %}

{% with email as email %} {% if confirmation %} {# ------------------- CONFIRMATION REQUEST (GET) - Success Theme ------------------- #} {% user_display confirmation.email_address.user as user_display %} {# Changed icon to a checkmark for clarity #}

{% translate "Confirm Your Email Address" %}

{% blocktrans with email as email %}Please confirm that **{{ email }}** is the correct email address for your account.{% endblocktrans %}

{# Confirmation Form #}
{% csrf_token %}
{% else %} {# ------------------- CONFIRMATION FAILED (Error) - Danger Theme ------------------- #} {# Changed icon to be more specific #}

{% translate "Verification Failed" %}

{% translate "The email confirmation link is expired or invalid." %}

{% translate "If you recently requested a link, please ensure you use the newest one. You can request a new verification email from your account settings." %}

{% translate "Go to Settings" %} {% endif %} {% endwith %}
{% endblock content %}