contentdb/app/templates/emails/verify.html

35 lines
858 B
HTML
Raw Normal View History

2019-01-04 20:17:04 +01:00
{% extends "emails/base.html" %}
{% block content %}
<h2 style="margin-top: 0;">Hello!</h2>
2018-05-14 01:40:34 +02:00
<p>
This email has been sent to you because someone (hopefully you)
has entered your email address as a user's email.
</p>
<p>
2019-01-04 20:17:04 +01:00
If it wasn't you, then just delete this email.
2018-05-14 01:40:34 +02:00
</p>
<p>
2020-12-05 01:27:26 +01:00
If this was you, then please click this link to confirm the address:
2018-05-14 01:40:34 +02:00
</p>
2019-01-04 20:17:04 +01:00
<a class="btn" href="{{ abs_url_for('users.verify_email', token=token) }}">
2019-01-04 20:17:04 +01:00
Confirm Email Address
</a>
<p style="font-size: 80%;">
2020-12-05 21:36:09 +01:00
Or paste this into your browser: <code>{{ abs_url_for('users.verify_email', token=token) }}</code>
2019-01-04 20:17:04 +01:00
<p>
{% endblock %}
2020-12-05 20:52:02 +01:00
{% block footer %}
2020-12-05 21:36:09 +01:00
You are receiving this email because someone (hopefully you) entered your email address as a user's email. <br>
<a href="{{ abs_url_for('users.unsubscribe', token=sub.token) }}">
{{ _("Unsubscribe") }}
</a>
2020-12-05 20:52:02 +01:00
{% endblock %}