contentdb/app/templates/emails/verify.html

36 lines
936 B
HTML
Raw Normal View History

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