Add basic functionality for self-registration.
[cas.git] / src / accounts / templates / registration / password_reset_email.html
1 {% load i18n %}{% autoescape off %}
2 {% blocktrans %}You're receiving this email because you requested
3 a password reset for your user account at Modern Poland Foundation.{% endblocktrans %}
4
5 {% trans "Please go to the following page and choose a new password:" %}
6 {% block reset_link %}
7 {{ protocol }}://{{ domain }}{% url 'django.contrib.auth.views.password_reset_confirm' uidb36=uid token=token %}
8 {% endblock %}
9 {% trans "Your username, in case you've forgotten:" %} {{ user.get_username }}
10
11 {% trans "Thanks for using our services!" %}
12
13 {% blocktrans %}Modern Poland Foundation team{% endblocktrans %}
14
15 {% endautoescape %}