{% extends 'account/base.html' %} {% load i18n %} {% load static %} {% block title %}{% trans "New account" %}{% endblock %} {% block navbar %}{% endblock %} {% block app_body %}
{% trans 'You got mail' %}

{% trans "Please confirm your email address!" %}

{% if title %}

{% blocktrans with title=title %} Your request “{{ title }}” will only be sent to the public body, when you confirm your email address. {% endblocktrans %}

{% endif %}
{% if email %}
  1. {% blocktrans with email=email %} Check your emails for your account {{ email }} {% endblocktrans %}
  2. {% blocktrans %} Click the confirmation link in the email from {{ SITE_NAME }}. {% endblocktrans %}
{% else %}

{% trans "Please go to your email account and click the confirmation link." %}

{% endif %} {% if title %}

{% trans "If you do not confirm your email address, we cannot send your request." %}

{% endif %}
{% endblock %}