rDrama/files/templates/email/email_verify.html

18 lines
878 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "email/default.html" %}
{% block title %}Welcome to {{SITE_TITLE}}!{% endblock %}
{% block content %}
<p>Thanks for joining {{SITE_TITLE}}. Were 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 %}