{% extends "authentic2/base-page.html" %} {% load i18n %} {% block title %} {% trans "Registration in progress" %} {% endblock %} {% block content %} {% block instructions %} {% blocktrans with email=request.session.registered_email %}
An email was sent to {{ email }}.
{% endblocktrans %} {% if account_activation_days > 1 %} {% blocktrans %}Follow the instructions in this email to continue your registration, this email will be valid during {{account_activation_days}} days.
{% endblocktrans %} {% else %} {% blocktrans %}Follow the instructions in this email to continue your registration, this email will be valid during 24 hours.
{% endblocktrans %} {% endif %} {% endblock %} {% block advice %} {% blocktrans with from_email=from_email %}To be sure to receive this email we recommend you to add the {{ from_email }} email address to your addressbook or list of authorised senders otherwise the message may end up in your spam folder.
{% endblocktrans %} {% blocktrans with from_email=from_email %}If you cannot find the email you should check your spam folder and if you find it there you should mark it as "non-spam" and add the {{from_email }} address to your addressbook, this should prevent further emails to be sorted as spams.
{% endblocktrans %} {% endblock %} {% block back %} {% endblock %} {% endblock %}