app-MAIL-temp/templates/auth/change_email.html
Son Nguyen Kim d49f6b88a9
Upgrade djlint and reformat all fiels (#2197)
* update djlint

* reformat all files

* update precommit version

---------

Co-authored-by: Son NK <son@simplelogin.io>
2024-08-28 13:07:34 +02:00

22 lines
547 B
HTML

{% extends "single.html" %}
{% block title %}Change Email{% endblock %}
{% block single_content %}
<div class="card">
<div class="card-body p-6">
<div class="h3 text-center">Email Update</div>
<div class="text-danger text-center h4">
Incorrect or expired link.
<br />
<br />
</div>
<div class="text-center">
Please go to
<a href="{{ url_for("dashboard.setting") }}">settings</a>
page to re-send the confirmation email.
</div>
</div>
</div>
{% endblock %}