2022-05-04 23:09:46 +00:00
|
|
|
{% extends "email/default.html" %}
|
|
|
|
|
|
|
|
{% block title %}Welcome to {{SITE_NAME}}!{% endblock %}</h1>
|
|
|
|
|
|
|
|
{% block content %}
|
2023-10-17 13:50:17 +00:00
|
|
|
<p>Thanks for joining {{SITE_NAME}}. We're happy to have you on board. To get the most out of {{SITE_NAME}}, please verify your account email:</p>
|
|
|
|
<div class="overflow-x-auto">
|
2024-03-02 20:03:39 +00:00
|
|
|
<table class="body-action text-center" width="100%" cellpadding="0" cellspacing="0">
|
2023-10-17 13:50:17 +00:00
|
|
|
<tr>
|
2024-03-02 20:03:39 +00:00
|
|
|
<td class="text-center">
|
2023-10-17 13:50:17 +00:00
|
|
|
<div class="overflow-x-auto">
|
2024-03-02 20:03:39 +00:00
|
|
|
<table class="border-0" width="100%" cellspacing="0" cellpadding="0">
|
2023-10-17 13:50:17 +00:00
|
|
|
<tr>
|
2024-03-02 20:03:39 +00:00
|
|
|
<td class="text-center">
|
2023-10-17 13:50:17 +00:00
|
|
|
<a href="{{action_url}}" class="f-fallback button" target="_blank">Verify email</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<p>For reference, here's your username.</p>
|
2023-10-29 12:56:44 +00:00
|
|
|
<div class="overflow-x-auto">
|
|
|
|
<table class="attributes" width="100%" cellpadding="0" cellspacing="0">
|
|
|
|
<tr>
|
|
|
|
<td class="attributes_content">
|
|
|
|
<div class="overflow-x-auto">
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0">
|
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
2023-10-17 13:50:17 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<p>Please note that {{SITE_NAME}} will never ask you for your email, password, or two-factor token via email, text, or phone.</p>
|
|
|
|
|
|
|
|
<div class="overflow-x-auto">
|
|
|
|
<table class="body-sub">
|
|
|
|
<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">{{action_url}}</p>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
2022-05-04 23:09:46 +00:00
|
|
|
{% endblock %}
|