summaryrefslogtreecommitdiff
path: root/django/contrib/admin/templates/registration/password_reset_email.html
blob: 2a428c48ceb97004b1eef6bb9a7a912d5f76ddd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% load i18n %}{% autoescape off %}
{% blocktranslate %}You're receiving this email 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 %}
{{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}
{% endblock %}
{% translate 'In case you’ve forgotten, you are:' %} {{ user.get_username }}

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

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

{% endautoescape %}