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

{% block subject -%}
    {% trans %}Reset your password{% endtrans %}
{%- endblock %}

{% block header_recipient -%}
    {{ user.first_name }}
{%- endblock %}

{% block body -%}
    {%- filter dedent -%}
        {%- trans username=username -%}
            We heard that you forgot your Indico username or password.

            Your username is: {{ username }}
            To set a new password, simply use the following link within an hour:
        {%- endtrans %}

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