{% extends "main.html" %} {% block title %}{{ _("Validate your email address") }}{% endblock %} {% block content %} {{ super() }} {% import '_form_macros.html' as macros %}

{{_("Account creation, step 2/3")}}

{{_("Congratulations %(name)s, your account has been created!", name=user.name)}}

{{_("Before you can log in, your email address: %(mail)s needs to be validated. Please check your inbox and click on the link to proceed.", mail=user.mail)}}

{{_("If you can't find the email in a couple minutes, check your spam folder. If it's not there, you can ask for another validation email by clicking on the button below.")}}

{{ form.csrf_token }} {{ form.submit(color="secondary") }}
{% endblock %}