{% extends 'auth/base.html' %} {% load static %} {% block title %}Email Verification - {{ block.super }}{% endblock %} {% block content %}
{% if verification_success %}

Email Verified!

Your email address has been successfully verified.

Account Activated - You now have full access to all features.
Welcome to Our Community!
Thank you for verifying your email. You're now part of our growing community.
{% elif verification_failed %}

Verification Failed

We couldn't verify your email address. The verification link may be invalid or expired.

Possible reasons:
Link expired • Already used • Copied incorrectly • Email already verified
{% else %}

Verify Your Email

Please check your email and click the verification link to activate your account.

{% if user.is_authenticated and not user.email_verified %}
Verification email sent to:
{{ user.email }}
You can request another email in 60 seconds
{% else %}
Account not found or already verified
Please sign in to check your verification status.
{% endif %}
{% endif %} {% if not verification_success %}
Why verify your email?
Security • Notifications • Password recovery • Prevent spam
{% endif %}
{% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %}