2019-11-18 19:41:17 +01:00
|
|
|
{% extends "single.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
Change Email
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block single_content %}
|
2020-04-27 23:08:21 +02:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body p-6">
|
2019-11-18 19:41:17 +01:00
|
|
|
|
2020-04-27 23:08:21 +02:00
|
|
|
{% if incorrect_code %}
|
|
|
|
<div class="text-danger text-center h4">
|
|
|
|
The link is incorrect. <br><br>
|
|
|
|
</div>
|
|
|
|
<div class="text-center">
|
|
|
|
Please go to <a href="{{ url_for('dashboard.setting') }}">settings</a>
|
|
|
|
page to re-send confirmation email.
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2019-11-18 19:41:17 +01:00
|
|
|
|
2020-04-27 23:08:21 +02:00
|
|
|
{% if expired_code %}
|
|
|
|
<div class="text-danger text-center h4">
|
|
|
|
The link is already expired. <br><br>
|
|
|
|
</div>
|
|
|
|
<div class="text-center">
|
|
|
|
Please go to <a href="{{ url_for('dashboard.setting') }}">settings</a>
|
|
|
|
page to re-send confirmation email.
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2019-11-18 19:41:17 +01:00
|
|
|
</div>
|
2020-04-27 23:08:21 +02:00
|
|
|
</div>
|
2019-11-18 19:41:17 +01:00
|
|
|
|
|
|
|
{% endblock %}
|