mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 03:21:01 +01:00
cb7868bdca
* Add DJlint configuration * Initial reformat for djlint * Add template linting to CI * Add explanation for HTML template checks in CONTRIBUTING.md
22 lines
547 B
HTML
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 %}
|