14 lines
670 B
Plaintext
14 lines
670 B
Plaintext
{% autoescape off %}
|
|
{% load i18n %}
|
|
{% blocktrans %}You're receiving this e-mail because you requested a password reset for your user account at{% endblocktrans %} {{ site.domain }}.
|
|
|
|
{% blocktrans %}Please go to the following page and choose a new password:{% endblocktrans %}
|
|
{% block reset_link %}
|
|
{% if secure %}https {% else %}http{% endif %}://{{ site.domain }}{% url "password_reset_reset" token %}
|
|
{% endblock %}
|
|
|
|
{% blocktrans %}Your username, in case you've forgotten: {% endblocktrans %}{{ user.username }}
|
|
|
|
{% blocktrans %}If you don't want to reset your password, simply ignore this email and it will stay unchanged.{% endblocktrans %}
|
|
|
|
{% endautoescape %} |