{% extends "base.html" %} {% block content %}

{% trans %}Confirm{% endtrans %}

{% include "components/errors.html" %}
{% trans %}We've sent a confirmation email to your email address.{% endtrans %}

{% trans %}Please click the link in that email to confirm your account.{% endtrans %}

{% trans %}If the email doesn’t arrive, check your spam folder or contact an administrator to manually verify your account.{% endtrans %}

{% with form = Forms.auth.ConfirmForm() %}
{{ form.submit(class="btn btn-primary w-100") }}
{{ form.nonce() }}
{% endwith %}
{% endblock %}