{% extends "base.html" %} {% load i18n %} {% load translations %} {% block breadcrumbs %}
  • {% trans "Registration" %}
  • {{ title }}
  • {% endblock %} {% block content %} {% trans "Please check your mailbox for the confirmation link." as msg %} {% show_message "info" msg %}

    {% 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 %}If your e-mail address exists in our database, you will receive further password recovery instructions in your inbox.{% endblocktrans %}

    {% blocktrans %}If the confirmation link expires before you get to use it, request a new one.{% endblocktrans %}

    {% elif is_remove %}

    {% blocktrans %}Shortly you should receive an e-mail containing a confirmation link. Click it to remove your account.{% endblocktrans %}

    {% blocktrans %}If the confirmation link expires before you get to use it, request a new one.{% endblocktrans %}

    {% else %}

    {% blocktrans %}Thank you for registering. Click the confirmation link you receive by e-mail to complete the registration.{% endblocktrans %}

    {% blocktrans %}If the confirmation link expires before you get to use it, register again.{% endblocktrans %}

    {% endif %}

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

    {% endblock %}