rDrama/files/templates/email/password_reset.html

55 lines
2.1 KiB
HTML
Raw Normal View History

2021-07-21 01:12:26 +00:00
{% extends "email/default.html" %}
{% block title %}Reset Your Password{% endblock %}
2021-08-19 05:14:52 +00:00
{% block preheader %}Reset your {{'SITE_NAME' | app_config}} password.{% endblock %}
2021-07-21 01:12:26 +00:00
{% block content %}
<p>To reset your password, click the button below:</p>
2021-09-28 03:44:31 +00:00
<table class="body-action" align="center" width="100%" cellpadding="0" cellspacing="0" role="presentation">
2021-07-21 01:12:26 +00:00
<tr>
<td align="center">
<!-- Border based button
2021-08-15 01:03:29 +00:00
https://litmus.com/blog/a-guide-to-bulletproof-buttons-in-email-design -->
2021-07-21 01:12:26 +00:00
<table width="100%" border="0" cellspacing="0" cellpadding="0" role="presentation">
<tr>
<td align="center">
2021-09-02 20:33:48 +00:00
<a href="{{action_url}}" class="f-fallback button" target="_blank">Reset password</a>
2021-07-21 01:12:26 +00:00
</td>
</tr>
</table>
</td>
</tr>
</table>
<p>For reference, here's your login information:</p>
<table class="attributes" width="100%" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td class="attributes_content">
<table width="100%" cellpadding="0" cellspacing="0" role="presentation">
<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>
<table class="body-sub" role="presentation">
<tr>
<td>
<p class="f-fallback sub">If youre having trouble with the button above, copy and paste the URL below into your web browser.</p>
<p class="f-fallback sub">{{action_url}}</p>
</td>
</tr>
</table>
{% endblock %}