You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

password_reset_email.html 582B

1234567891011121314
  1. {% load i18n %}{% autoescape off %}
  2. {% blocktrans %}You're receiving this email because you requested a password reset for your user account at {{ site_name }}.{% endblocktrans %}
  3. {% trans "Please go to the following page and choose a new password:" %}
  4. {% block reset_link %}
  5. {{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}
  6. {% endblock %}
  7. {% trans "Your username, in case you've forgotten:" %} {{ user.get_username }}
  8. {% trans "Thanks for using our site!" %}
  9. {% blocktrans %}The {{ site_name }} team{% endblocktrans %}
  10. {% endautoescape %}