Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions user/templates/mails/password_reset_message original.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{% extends 'base_email.html' %}
{% block preheader %}Password reset{% endblock %}
{% block content %}
<p>
To initiate the password reset process for your {{ user.get_full_name }} {{ h_name }} Account,
click below:
</p>

{% include 'mails/include/email_button.html' with url=reset_url text='Reset password' %}
<p>
If clicking the link above doesn't work, please copy and paste the URL in a new browser
window instead.
</p>
<p style="text-align: center;">{{ reset_url|urlize }}</p>

{% include 'mails/include/closing.html' %}

{% endblock %}
Loading