31 lines
749 B
HTML
31 lines
749 B
HTML
{% load i18n %}{% autoescape off %}
|
|
<p>
|
|
{% blocktrans %}You're receiving this email because you requested a password reset for your user account at {{ site_name }}.{% endblocktrans %}
|
|
</p>
|
|
|
|
<p>
|
|
{% trans "Please go to the following page and choose a new password:" %}
|
|
</p>
|
|
|
|
<p>
|
|
{% block reset_link %}
|
|
<a href="{{ protocol }}://{{ domain }}{% url 'idhub:password_reset_confirm' uidb64=uid token=token %}">
|
|
{{ protocol }}://{{ domain }}{% url 'idhub:password_reset_confirm' uidb64=uid token=token %}
|
|
</a>
|
|
{% endblock %}
|
|
</p>
|
|
|
|
<p>
|
|
{% trans "Your username, in case you've forgotten:" %} {{ user.username }}
|
|
</p>
|
|
|
|
<p>
|
|
{% trans "Thanks for using our site!" %}
|
|
</p>
|
|
|
|
<p>
|
|
{% blocktrans %}The {{ site_name }} team{% endblocktrans %}
|
|
</p>
|
|
|
|
{% endautoescape %}
|