mirror of
https://github.com/simple-login/app.git
synced 2024-11-03 12:21:02 +01:00
18 lines
311 B
HTML
18 lines
311 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="flex-fill">
|
|
{% include "header.html" %}
|
|
|
|
<div class="my-2 my-md-2">
|
|
<div class="container pt-3">
|
|
{% block default_content %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% include "footer.html" %}
|
|
|
|
{% endblock %} |