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
15 lines
448 B
HTML
15 lines
448 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Mailbox Validation{% endblock %}
|
|
{% block content %}
|
|
|
|
<div class="mx-auto p-7 card" style="max-width: 50rem">
|
|
<div class="text-center mb-7">
|
|
Mailbox <b>{{ mailbox.email }}</b> verified, you can now start creating alias with it
|
|
</div>
|
|
<div class="mx-auto">
|
|
<a href="{{ url_for('dashboard.index') }}" class="btn btn-primary">Go To Home Page</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|