mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 17:08:30 +01:00
18 lines
306 B
HTML
18 lines
306 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="flex-fill">
|
||
|
{% include "header.html" %}
|
||
|
|
||
|
<div class="my-3 my-md-5">
|
||
|
<div class="container">
|
||
|
{% block default_content %}
|
||
|
{% endblock %}
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{% include "footer.html" %}
|
||
|
|
||
|
{% endblock %}
|