mirror of
https://github.com/simple-login/app.git
synced 2024-10-31 19:11:01 +01:00
20 lines
525 B
HTML
20 lines
525 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="page-single">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col mx-auto" style="max-width: 28rem">
|
|
<div class="text-center mb-6">
|
|
<a href="{{LANDING_PAGE_URL}}">
|
|
<img src="/static/logo.svg" style="background-color: transparent; height: 20px">
|
|
</a>
|
|
</div>
|
|
|
|
{% block single_content %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |