authentic/src/authentic2/templates/registration/registration_complete.html

25 lines
768 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block title %}
{% trans "Registration in progress" %}
{% endblock %}
{% block content %}
{% blocktrans with email=request.session.registered_email %}
<p>An email was sent to {{ email }}.</p>
{% endblocktrans %}
{% if account_activation_days > 1 %}
{% blocktrans %}
<p>Follow instruction in this email to continue your registration, this
email will be valid during {{account_activation_days}} days.</p>
{% endblocktrans %}
{% else %}
{% blocktrans %}
<p>Follow instruction in this email to continue your registration, this
email will be valid during 24 hours.</p>
{% endblocktrans %}
{% endif %}
<p><a href="{{ next_url }}">{% trans "Back" %}</a></p>
{% endblock %}