Enter your verification code

Sent to {{ email or 'your registered email' }}

{# --- Notice banners rendered from URL param (cookie-free) --- #} {% set notice = request.args.get('notice', '') %} {% if notice == 'otp_sent' %}
✅ Registration successful. A verification code was sent to your email.
{% elif notice == 'otp_resent' %}
✅ A fresh verification code was sent to your email.
{% elif notice == 'otp_email_failed' %}
⚠️ Account created, but the email could not be sent. Please use "Resend code" below.
{% elif notice == 'invalid_digits' %}
Please enter the full 6-digit code.
{% elif notice == 'invalid_code' %}
Invalid or expired code. Please try again or request a new one.
{% endif %} {# --- Legacy flash messages (still shown for local dev) --- #} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}
{# Carry the token in a hidden input so it survives the POST #}