mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 03:21:01 +01:00
2351330732
* mention about proton mail during signup * format * trim whitespaces --------- Co-authored-by: Son NK <son@sons-macbook-air-2.home> Co-authored-by: Son NK <son@Sons-MacBook-Air-2.local>
21 lines
536 B
HTML
21 lines
536 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: 32rem">
|
|
<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 %}
|