app-MAIL-temp/templates/auth/change_email.html

22 lines
547 B
HTML
Raw Normal View History

2019-11-18 19:41:17 +01:00
{% extends "single.html" %}
{% block title %}Change Email{% endblock %}
2019-11-18 19:41:17 +01:00
{% block single_content %}
<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">
Incorrect or expired link.
<br />
<br />
2020-08-13 10:59:39 +02:00
</div>
<div class="text-center">
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>
</div>
{% endblock %}