{% extends "base.html" %} {% load i18n %} {% load account %} {% block title %}{% translate "Confirm Email Address" %}{% endblock %} {% block content %}

{% translate "Account Verification" %}

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

{% with emailaddress.email as email %} {% if confirmation %} {# ------------------- CONFIRMATION REQUEST (GET) ------------------- #} {% user_display confirmation.email_address.user as user_display %}

{% translate "Confirm Your Email Address" %}

{% blocktrans with email as email %}Please confirm that **{{ email }}** is an email address for user **{{ user_display }}**.{% endblocktrans %}

{# Confirmation Form #}
{% csrf_token %} {# Teal/Dark Green button consistent with the UI theme #}
{% else %} {# ------------------- CONFIRMATION FAILED (Error) ------------------- #}

{% translate "Invalid Link" %}

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

{% translate "Please request a new verification email from your account settings page." %}

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