rDrama/files/templates/email/email_verify.html

55 lines
2.5 KiB
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
{% extends "email/default.html" %}
2022-01-13 23:39:39 +00:00
{% block title %}Welcome to {{SITE_NAME}}!{% endblock %}</h1>
2021-10-15 14:08:27 +00:00
{% block content %}
2022-01-13 23:39:39 +00:00
<p>Thanks for joining {{SITE_NAME}}. Were happy to have you on board. To get the most out of {{SITE_NAME}}, please verify your account email:</p>
2021-12-31 16:51:53 +00:00
<div class="overflow-x-auto"><table class="body-action" align="center" width="100%" cellpadding="0" cellspacing="0" role="presentation">
2021-10-15 14:08:27 +00:00
<tr>
<td align="center">
<!-- Border based button
https://litmus.com/blog/a-guide-to-bulletproof-buttons-in-email-design -->
2021-12-31 16:51:53 +00:00
<div class="overflow-x-auto><table width="100%" border="0" cellspacing="0" cellpadding="0" role="presentation">
2021-10-15 14:08:27 +00:00
<tr>
<td align="center">
<a href="{{action_url}}" class="f-fallback button" target="_blank">Verify email</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
<p>For reference, here's your username.</p>
2021-12-31 16:51:53 +00:00
<div class="overflow-x-auto"><table class="attributes" width="100%" cellpadding="0" cellspacing="0" role="presentation">
2021-10-15 14:08:27 +00:00
<tr>
<td class="attributes_content">
2021-12-31 16:51:53 +00:00
<div class="overflow-x-auto><table width="100%" cellpadding="0" cellspacing="0" role="presentation">
2021-10-15 14:08:27 +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>
2022-01-13 23:39:39 +00:00
<p>Please note that {{SITE_NAME}} will never ask you for your email, password, or two-factor token via email, text, or phone.</p>
2021-12-31 16:51:53 +00:00
<div class="overflow-x-auto"><table class="body-sub" role="presentation">
2021-10-15 14:08:27 +00:00
<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 %}