mirror of
https://github.com/simple-login/app.git
synced 2024-11-13 07:31:12 +01:00
23 lines
No EOL
620 B
HTML
23 lines
No EOL
620 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="flex-fill align-items-center mt-8">
|
|
<!-- Image container -->
|
|
<div class="mt-4 mb-4 text-center" style="display:block;">
|
|
<a class="" href="{{ url_for('dashboard.index') }}">
|
|
<picture>
|
|
<source media="(max-width: 650px)" srcset="/static/logo.svg">
|
|
<img src="/static/logo.svg" style="width: 24rem" alt="logo">
|
|
</picture>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Text container -->
|
|
<div class="mt-8 mb-4 text-center">
|
|
<h2 class="text-red" style="font-size:2rem">All set!</h2>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %} |