{% extends "base.html" %} {% block title %}Email verification - ActingWeb{% endblock %} {% block content %}
{% if status in ['success', 'verified', 'already_verified'] %}

Email verified

{% else %}

Email verification

{% endif %} {% if status not in ['success', 'verified', 'already_verified'] and status %}
{{ message|default(status) }}
{% else %}

{{ message|default('Your email address has been verified.') }}

{% endif %} {% if email %}

{{ email }}

{% endif %} {% if redirect_url %}

Continue

{% elif actor_id %}

Continue

{% endif %}
{% endblock %}