{% extends 'emails/base_i18n.txt' %}

{% block subject -%}
    {% trans %}Verify your email{% endtrans %}
{%- endblock %}

{% block header_recipient -%}
    {% trans %}Dear user,{% endtrans %}
{%- endblock %}

{% block body -%}
{% filter dedent -%}
    {%- filter wordwrap(width=81, break_long_words=false) -%}
        {%- trans -%}
            You started the Indico profile creation process. To continue, you need to verify
            that {{ email }} is indeed your email address.
        {%- endtrans -%}
    {%- endfilter %}

    {% trans %}Please click the following link to continue the registration process:{% endtrans %}

    {{ url }}
{%- endfilter -%}
{%- endblock %}
