69 lines
1.9 KiB
HTML
69 lines
1.9 KiB
HTML
{% extends "email/default.html" %}
|
|
|
|
{% block title %}Verify Your Email{% endblock %}</h1>
|
|
|
|
{% block preheader %}Verify your new {{SITE_NAME}} email.{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>You told us you wanted to change your {{SITE_NAME}} account email. To finish this process, please verify your new email address:</p>
|
|
<div class="overflow-x-auto">
|
|
<table class="body-action text-center" width="100%" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td class="text-center">
|
|
<div class="overflow-x-auto">
|
|
<table class="border-0" width="100%" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td class="text-center">
|
|
<a href="{{action_url}}" class="f-fallback button" target="_blank">Verify email</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<p>For reference, here's your current information:</p>
|
|
|
|
<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>
|
|
|
|
<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>
|
|
{% endblock %}
|