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

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

{% block header_recipient -%}
    {% trans name=user.first_name %}Dear {{ name }},{% endtrans %}
{%- endblock %}

{% block body -%}
{% filter dedent -%}
    {%- filter wordwrap(width=88, break_long_words=false) -%}
        {%- trans name=user.full_name -%}
            You tried to log in to your profile "{{ name }}" using a new authentication
            method.  To finish the login process you need to verify that {{ email }} is indeed your
            email address.  This is a one-time action. Afterwards, you will be able to log in using
            the same authentication method without going through this step.
        {%- endtrans -%}
    {%- endfilter %}

    {% trans %}Please click the following link to finish the login process:{% endtrans %}

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