for the moment this is for the password change url used in the auth dropdown, and a better login page, but this might become other stuff eventually too. the signup page exists and is linked to, even if i don't have a great reason for this to exist bunch of templates added now to support the intentional and unintentional stuff
27 lines
896 B
HTML
27 lines
896 B
HTML
{% load i18n %}
|
|
{% load url from future %}
|
|
|
|
{% blocktrans %}Greetings{% endblocktrans %} {% if user.get_full_name %}{{ user.get_full_name }}{% else %}{{ user }}{% endif %},
|
|
|
|
{% blocktrans %}
|
|
You are receiving this email because you (or someone pretending to be you)
|
|
requested that your password be reset on the {{ domain }} site. If you do not
|
|
wish to reset your password, please ignore this message.
|
|
{% endblocktrans %}
|
|
|
|
{% blocktrans %}
|
|
To reset your password, please click the following link, or copy and paste it
|
|
into your web browser:
|
|
{% endblocktrans %}
|
|
|
|
{{ protocol }}://{{ domain }}{% url 'auth_password_reset_confirm' uid token %}
|
|
|
|
{% blocktrans %}Your username, in case you've forgotten:{% endblocktrans %} {{ user.username }}
|
|
|
|
|
|
{% blocktrans %}Best regards{% endblocktrans %},
|
|
{{ site_name }} {% blocktrans %}Management{% endblocktrans %}
|
|
|
|
|
|
{# This is used by django.contrib.auth #}
|