18 lines
878 B
HTML
18 lines
878 B
HTML
{% extends "email/default.html" %}
|
||
|
||
{% block title %}Welcome to {{SITE_TITLE}}!{% endblock %}
|
||
|
||
{% block content %}
|
||
<p>Thanks for joining {{SITE_TITLE}}. We’re happy to have you on board. Please click the button below to verify your email address:</p>
|
||
<div class="button-container">
|
||
<a href="{{action_url}}" class="button" target="_blank" rel="noopener">Verify Email</a>
|
||
</div>
|
||
<p class="reference-text">For reference, here's your username:</p>
|
||
<div class="user-info">
|
||
<p><strong>Username:</strong> {{v.username}}</p>
|
||
<p><strong>Email:</strong> {{v.email}}</p>
|
||
</div>
|
||
<p class="user-info">Please note that {{SITE_TITLE}} will never ask you for your email, password, or two-factor token via email, text, or phone.</p>
|
||
<hr />
|
||
<p class="raw-link">If the button doesn't work, you can copy and paste this link into your browser: <br>{{action_url}}</p>
|
||
{% endblock %}
|