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
|
|
|
|
2020-01-25 04:03:45 +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-01-25 04:03:45 +01:00
|
|
|
Or paste this into your browser: {{ abs_url_for('users.verify_email', token=token) }}
|
2019-01-04 20:17:04 +01:00
|
|
|
<p>
|
|
|
|
|
|
|
|
{% endblock %}
|