mirror of
https://github.com/simple-login/app.git
synced 2024-11-14 08:01:13 +01:00
40 lines
No EOL
1.5 KiB
HTML
40 lines
No EOL
1.5 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="flex-fill align-items-center mt-8">
|
|
<!-- Image container -->
|
|
<div class="mt-4 mb-4 text-center" style="display:block;">
|
|
<a class="" href="{{ url_for('dashboard.index') }}">
|
|
<picture>
|
|
<source media="(max-width: 650px)" srcset="/static/logo.svg">
|
|
<img src="/static/logo.svg" style="width: 24rem" alt="logo">
|
|
</picture>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Text container -->
|
|
<div class="mt-8 mb-4 text-center">
|
|
<h2 class="text-dark" style="font-size:2rem">Let's take back control of your inbox!</h2>
|
|
</div>
|
|
|
|
<div class="mt-8 text-center">
|
|
{% if is_user_logged_in %}
|
|
<h2 class="text-black-50" style="font-size:2rem">Performing the extension setup...</h2>
|
|
{% else %}
|
|
<a class="mx-6 p-4 text-decoration-none" style="background:black;color:white;" href="{{ url_for('auth.register', next=url_for('onboarding.setup_done')) }}">Create a new account</a>
|
|
<a class="mx-6 p-4 text-decoration-none" style="background:white;color:black;border-radius: 2px;border:1px solid black;" href="{{ url_for('auth.login', next=url_for('onboarding.setup_done')) }}">I already have an account</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
{% if is_user_logged_in %}
|
|
<script type="text/javascript">
|
|
setInterval(function() {
|
|
const data = { tag: "PERFORM_EXTENSION_SETUP" };
|
|
window.postMessage(data, "/");
|
|
}, 300); // Give some time to the extension for registering the listener
|
|
</script>
|
|
{% endif %}
|
|
|
|
{% endblock %} |