mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 03:21:01 +01:00
19 lines
568 B
HTML
19 lines
568 B
HTML
{% extends "single.html" %}
|
|
|
|
{% set active_page = "dashboard" %}
|
|
{% block title %}Thank you{% endblock %}
|
|
{% block single_content %}
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h1 class="h3">Thanks so much for supporting SimpleLogin!</h1>
|
|
<p>
|
|
SimpleLogin is 100% funded by the community.
|
|
We do not use your data, track you or show you ads.
|
|
</p>
|
|
<p>Thanks to your support, we can keep the service running and develop new features.</p>
|
|
<a class="btn btn-primary" href="/">Close</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|