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

33 lines
859 B
HTML
Raw Normal View History

2019-11-18 19:41:17 +01:00
{% extends "single.html" %}
{% block title %}
Change Email
{% endblock %}
{% block single_content %}
<div class="card">
<div class="card-body p-6">
2019-11-18 19:41:17 +01: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
{% 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>
</div>
2019-11-18 19:41:17 +01:00
{% endblock %}