2022-05-04 23:09:46 +00:00
|
|
|
{% extends "email/default.html" %}
|
|
|
|
|
|
|
|
{% block title %}Reset Your Password{% endblock %}
|
|
|
|
{% block preheader %}Reset your {{SITE_NAME}} password.{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<p>To reset your password, click the button below:</p>
|
2023-01-20 07:14:59 +00:00
|
|
|
<div class="overflow-x-auto"><table class="body-action" align="center" width="100%" cellpadding="0" cellspacing="0">
|
2022-05-04 23:09:46 +00:00
|
|
|
<tr>
|
|
|
|
<td align="center">
|
2023-01-20 07:14:59 +00:00
|
|
|
<div class="overflow-x-auto><table width="100%" border="0" cellspacing="0" cellpadding="0">
|
2022-05-04 23:09:46 +00:00
|
|
|
<tr>
|
|
|
|
<td align="center">
|
|
|
|
<a href="{{action_url}}" class="f-fallback button" target="_blank">Reset password</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<p>For reference, here's your login information:</p>
|
2023-01-20 07:14:59 +00:00
|
|
|
<div class="overflow-x-auto"><table class="attributes" width="100%" cellpadding="0" cellspacing="0">
|
2022-05-04 23:09:46 +00:00
|
|
|
<tr>
|
|
|
|
<td class="attributes_content">
|
2023-01-20 07:14:59 +00:00
|
|
|
<div class="overflow-x-auto><table width="100%" cellpadding="0" cellspacing="0">
|
2022-05-04 23:09:46 +00:00
|
|
|
<tr>
|
|
|
|
<td class="attributes_item">
|
|
|
|
<span class="f-fallback">
|
|
|
|
<strong>Email:</strong> {{v.email}}
|
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="attributes_item">
|
|
|
|
<span class="f-fallback">
|
|
|
|
<strong>Username:</strong> {{v.username}}
|
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2023-01-20 07:14:59 +00:00
|
|
|
<div class="overflow-x-auto"><table class="body-sub">
|
2022-05-04 23:09:46 +00:00
|
|
|
<tr>
|
|
|
|
<td>
|
2022-09-03 00:10:15 +00:00
|
|
|
<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>
|
2022-05-04 23:09:46 +00:00
|
|
|
<p class="f-fallback sub">{{action_url}}</p>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
{% endblock %}
|