2019-11-18 19:41:17 +01:00
|
|
|
{% extends "single.html" %}
|
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% block title %}Change Email{% endblock %}
|
2019-11-18 19:41:17 +01:00
|
|
|
{% block single_content %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
2020-04-27 23:08:21 +02:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body p-6">
|
2020-08-13 10:59:39 +02:00
|
|
|
<div class="h3 text-center">Email Update</div>
|
|
|
|
<div class="text-danger text-center h4">
|
2022-06-29 11:28:26 +02:00
|
|
|
Incorrect or expired link.
|
|
|
|
<br />
|
|
|
|
<br />
|
2020-08-13 10:59:39 +02:00
|
|
|
</div>
|
|
|
|
<div class="text-center">
|
2022-06-29 11:28:26 +02:00
|
|
|
Please go to
|
|
|
|
<a href="{{ url_for('dashboard.setting') }}">settings</a>
|
2020-08-13 10:59:39 +02:00
|
|
|
page to re-send the confirmation email.
|
|
|
|
</div>
|
2019-11-18 19:41:17 +01:00
|
|
|
</div>
|
2020-04-27 23:08:21 +02:00
|
|
|
</div>
|
2022-06-29 11:28:26 +02:00
|
|
|
{% endblock %}
|