{% extends "base.html" %} {% load i18n %} {% load translations %} {% block breadcrumbs %}
  • {% trans "Registration" %}
  • {{ title }}
  • {% endblock %} {% block content %} {% trans "You will find the confirmation link in your e-mail inbox." 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 %}Follow the password recovery instructions sent to your e-mail inbox.{% endblocktrans %}

    {% blocktrans %}Request a new confirmation link if it expires.{% endblocktrans %}

    {% elif is_remove %}

    {% blocktrans %}Remove your account by clicking the confirmation link in the e-mail sent to you.{% endblocktrans %}

    {% blocktrans %}Request a new confirmation link if it expires.{% endblocktrans %}

    {% else %}

    {% blocktrans %}Click the confirmation link sent to your e-mail inbox and start using your account.{% endblocktrans %}

    {% blocktrans %}Register again if the confirmation link expires.{% endblocktrans %}

    {% endif %}

    {% url 'contact' as contact_url %} {% blocktrans %}If it isn't in the spam folder either, you might have to register again. Please contact us if you have problems.{% endblocktrans %}

    {% endblock %}