{% extends "profiles/base.html" %} {% block breadcrumb_items %} {{ block.super }} Email Verification {% endblock %} {% block content %}

Email Verification

{% if was_previously_verified %}

{% include "bi/check-circle-fill.html" %} Your email address has already been verified.

{% elif profile_email.verified %}

{% include "bi/check-circle-fill.html" %} Your email address has been successfully verified.

{% else %}

{% include "bi/x-circle-fill.html" %} Your email address could not be verified.

{% if profile_email.has_token_expired %}

Your token has expired, please request a new one from the personal page.

{% elif not is_token_correct %}

The token you provided is incorrect, please verify that you copied it correctly.

{% endif %} {% endif %}

You may now close this window.

{% endblock %}