{# # Verify Email Page #} {% extends 'auth/base-auth.twig' %} {% set title = 'Verify Email' %} {% block content %} {% if verified|default(false) %} {# Success State #}

Email Verified!

Your email address has been successfully verified.

Sign In to Your Account
{% elseif error|default(false) %} {# Error State #}

Verification Failed

{{ errorMessage|default('Invalid or expired verification link.') }}

Go to Login Resend Verification Email
{% else %} {# Pending State #}

Check Your Email

We've sent a verification link to {{ email|default('your email') }}. Please check your inbox and click the link to verify your account.

Didn't receive the email?

Resend Verification Email Back to Login
{% endif %} {% endblock %}