integreat_cms/cms/templates/emails/password_reset_email.html
{% extends "emails/_base_email.html" %}
{% load i18n %}
{% block content %}
{% translate "Welcome" %} {{ user.full_user_name }},
<br />
<br />
{% blocktranslate trimmed %}
You are receiving this e-mail, because you have requested a password reset for your {{ BRANDING_TITLE }} account.
{% endblocktranslate %}
<br />
{% translate "Please use the following link to set a new password:" %}
<br />
<br />
<a href="{{ protocol }}://{{ domain }}{% url 'public:password_reset_confirm' uidb64=uid token=token %}">
{{ protocol }}://{{ domain }}{% url 'public:password_reset_confirm' uidb64=uid token=token %}
</a>
<br />
<br />
{% translate "If clicking on the link above does not work, please copy the URL and paste it into the address bar of your browser." %}
<br />
<br />
{% translate "Your username, in case you've forgotten:" %} <b>{{ user.get_username }}</b>
{% endblock content %}