rDrama/files/templates/email/email_change.html
2023-07-13 00:56:18 -03:00

18 lines
890 B
HTML

{% extends "email/default.html" %}
{% block title %}Verify your new {{SITE_TITLE}} email.{% endblock %}</h1>
{% block content %}
<p>You told us you wanted to change your {{SITE_TITLE}} account email. To finish this process, please verify your new email address:</p>
<div class="button-container">
<a href="{{action_url}}" class="button" target="_blank">Verify Email</a>
</div>
<p class="reference-text">For reference, here's your current information:</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 %}