{% extends "base.html" %} {% load i18n %} {% block breadcrumbs %}
  • {% trans "Registration" %}
  • {{ title }}
  • {% endblock %} {% block content %}

    {% if is_reset %} {% trans "Password reset almost complete" %} {% elif is_remove %} {% trans "Account removal almost complete" %} {% else %} {% trans "Registration almost complete" %} {% endif %}

    {% if is_reset %}

    {% blocktrans %}You will very soon receive an email with a confirmation link. Please follow this link in order to complete your password reset procedure.{% endblocktrans %}

    {% elif is_remove %}

    {% blocktrans %}You will very soon receive an email with a confirmation link. Please follow this link in order to complete your account removal procedure.{% endblocktrans %}

    {% else %}

    {% blocktrans %}Thank you for registering. You will very soon receive an email with a confirmation link. Please follow this link in order to complete your registration.{% endblocktrans %}

    {% endif %}

    {% blocktrans %}Please note that the confirmation link has limited validity. In case it does not work, please register again.{% endblocktrans %}

    {% url 'contact' as contact_url %} {% blocktrans %}If you don't receive it shortly, please check your spam folder or retry the registration. If the problem persists, please contact us.{% endblocktrans %}

    {% endblock %}