{% extends "authentic2/base-page.html" %} {% load i18n %} {% block title %} {% trans "Registration in progress" %} {% endblock %} {% block content %} {% blocktrans with email=request.session.registered_email %}

An email was sent to {{ email }}.

{% endblocktrans %} {% if account_activation_days > 1 %} {% blocktrans %}

Follow instruction in this email to continue your registration, this email will be valid during {{account_activation_days}} days.

{% endblocktrans %} {% else %} {% blocktrans %}

Follow instruction in this email to continue your registration, this email will be valid during 24 hours.

{% endblocktrans %} {% endif %}

{% trans "Back" %}

{% endblock %}