app/templates/auth/change_email.html

22 lines
547 B
HTML
Raw Permalink Normal View History

2019-11-19 02:41:17 +08:00
{% extends "single.html" %}
{% block title %}Change Email{% endblock %}
2019-11-19 02:41:17 +08:00
{% block single_content %}
<div class="card">
<div class="card-body p-6">
2020-08-13 16:59:39 +08: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 16:59:39 +08:00
</div>
<div class="text-center">
Please go to
<a href="{{ url_for('dashboard.setting') }}">settings</a>
2020-08-13 16:59:39 +08:00
page to re-send the confirmation email.
</div>
2019-11-19 02:41:17 +08:00
</div>
</div>
{% endblock %}