2022-03-20 19:14:42 +01:00
|
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
{% block title %}Password reset request{% endblock %}
|
|
|
|
|
{% block preheader %}Use this link to reset your password. The link is only valid for {{ expiration_delay }}.{% endblock %}
|
|
|
|
|
{% block content %}<h1>Hi {{username}},</h1>
|
2020-05-17 16:42:44 +02:00
|
|
|
|
<p>You recently requested to reset your password for your account. Use the button below to reset it.
|
2020-07-11 19:35:20 +02:00
|
|
|
|
<strong>This password reset link is only valid for {{ expiration_delay }}.</strong>
|
2020-05-17 16:42:44 +02:00
|
|
|
|
</p>
|
|
|
|
|
<table class="body-action" align="center" width="100%" cellpadding="0" cellspacing="0" role="presentation">
|
|
|
|
|
<tr>
|
|
|
|
|
<td align="center">
|
|
|
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0" role="presentation">
|
|
|
|
|
<tr>
|
|
|
|
|
<td align="center">
|
|
|
|
|
<a href="{{password_reset_url}}" class="f-fallback button button--green" target="_blank">Reset your password</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
<p>
|
2022-03-12 10:09:43 +01:00
|
|
|
|
{% if operating_system and browser_name %}For security, this request was received from a {{operating_system}} device using {{browser_name}}.
|
|
|
|
|
{% endif %}If you did not request a password reset, please ignore this email.
|
2020-05-17 16:42:44 +02:00
|
|
|
|
</p>
|
|
|
|
|
<p>Thanks,
|
|
|
|
|
<br>The FitTrackee Team</p>
|
|
|
|
|
<table class="body-sub" role="presentation">
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<p class="f-fallback sub">If you’re having trouble with the button above, copy and paste the URL below into your web browser.</p>
|
|
|
|
|
<p class="f-fallback sub">{{password_reset_url}}</p>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
2022-03-20 19:14:42 +01:00
|
|
|
|
</table>{% endblock %}
|