{% extends 'account/base.html' %} {% load i18n %} {% load static %} {% block title %}{% trans "Your account is now confirmed" %}{% endblock %} {% block navbar %}{% endblock %} {% block body %}
{% trans 'You got mail' %}

{% trans "Your email address is now confirmed!" %}

{% if foirequest %}

{% blocktrans with title=foirequest.title url=foirequest.get_absolute_url %} Your request “{{ title }}” has been sent. {% endblocktrans %}

{% endif %}

{% trans "We will send you an email when you receive a reply from the public body." %}

{% block password_form %}
{% trans "Please set a password for your account now" as form_title %} {% include "account/includes/change_password_form.html" with form_title=form_title %}
{% endblock %}
{% block below_password %}{% endblock %} {% endblock %}