{% extends "base.html" %} {% block title %}Verify Your Email - {{ app_name }}{% endblock %} {% block content %}

Verify Your Email Address

Hi{{ " " + user_name if user_name else "" }},

Thank you for signing up for {{ app_name }}! To complete your registration and activate your account, please verify your email address.

{% if verification_url %}

Verify Email Address

Or copy and paste this link into your browser:
{{ verification_url }}

{% endif %} {% if code %}

Your verification code is:

{{ code }}

Enter this code in the app to verify your email.

{% endif %}

This {{ "link" if verification_url else "code" }} will expire in {{ expires_in | default("24 hours") }}.

If you did not create an account with {{ app_name }}, you can safely ignore this email. Someone may have entered your email address by mistake.

{% endblock %}