summaryrefslogtreecommitdiff
path: root/djangoproject/templates/registration/password_reset_email.html
blob: b5026d42794eb58761ccad54b0e2ce8cb9821f5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% load i18n %}
{% autoescape off %}
    {% blocktranslate trimmed %}You're receiving this e-mail because you requested a password reset
        for your user account at {{ site_name }}{% endblocktranslate %}.

    {% translate "Please go to the following page and choose a new password:" %}
    {% block reset_link %}
        {% url 'password_reset_confirm' uidb64=uid token=token %}
    {% endblock %}
    {% translate "Your username, in case you've forgotten:" %} {{ user.username }}

    {% translate "Thanks for using our site!" %}

    {% blocktranslate %}The {{ site_name }} team{% endblocktranslate %}

{% endautoescape %}