{% extends "base.html" %} {% load i18n %} {% load translations %} {% 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 %}Follow the password recovery instructions sent to your e-mail inbox.{% endblocktrans %} {% elif is_remove %} {% blocktrans %}Remove your account by clicking the confirmation link sent to your e-mail inbox.{% endblocktrans %} {% else %} {% blocktrans %}Click the confirmation link sent to your e-mail inbox and start using your account.{% endblocktrans %} {% endif %}

    {% blocktrans %}Please look into your spam folder if you cannot see it in your inbox.{% endblocktrans %}

    {% blocktrans count count=validity %}The confirmation link will expire after {{ count }} hour.{% plural %}The confirmation link will expire after {{ count }} hours.{% endblocktrans %} {% if is_reset or is_remove %} {% blocktrans %}Request a new confirmation link if it expires.{% endblocktrans %} {% else %} {% blocktrans %}Register again if the confirmation link expires.{% endblocktrans %} {% endif %}

    {% blocktrans %}If there is a problem with your registration, please contact us.{% endblocktrans %}

    {% endblock %}