2022-06-29 17:28:26 +08:00
|
|
|
{% extends "base.html" %}
|
2022-05-19 23:01:38 +08:00
|
|
|
|
|
|
|
{% block content %}
|
2022-06-29 17:28:26 +08:00
|
|
|
|
2022-05-19 23:01:38 +08:00
|
|
|
<div class="flex-fill align-items-center mt-8">
|
|
|
|
<!-- Image container -->
|
|
|
|
<div class="mt-4 mb-4 text-center" style="display:block;">
|
2022-06-29 17:28:26 +08:00
|
|
|
<a href="{{ url_for('dashboard.index') }}">
|
2022-05-19 23:01:38 +08:00
|
|
|
<picture>
|
|
|
|
<source media="(max-width: 650px)" srcset="/static/logo.svg">
|
2022-05-20 21:35:57 +08:00
|
|
|
<img src="/static/logo.svg" style="width: 12rem" alt="logo">
|
2022-05-19 23:01:38 +08:00
|
|
|
</picture>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<!-- Text container -->
|
|
|
|
<div class="my-6 text-center">
|
2022-05-20 21:35:57 +08:00
|
|
|
<h2 style="color:black;font-size:2rem">Welcome!</h2>
|
2022-05-19 23:01:38 +08:00
|
|
|
</div>
|
|
|
|
<div class="px-8" style="width:675px;margin:auto;">
|
|
|
|
<div class="my-6">
|
2022-05-20 21:35:57 +08:00
|
|
|
<p style="font-size: 1.2em;">
|
|
|
|
Quickly create aliases everywhere using our {{ browser_name }} extension
|
|
|
|
</p>
|
2022-06-29 17:28:26 +08:00
|
|
|
<a class="px-4 py-3 mt-4 text-decoration-none text-center"
|
|
|
|
style="background:black;
|
|
|
|
color:white;
|
|
|
|
display:block;
|
|
|
|
width:50%;"
|
|
|
|
href="{{ extension_link }}">
|
|
|
|
Install {{ browser_name }} extension
|
|
|
|
</a>
|
2022-05-19 23:01:38 +08:00
|
|
|
</div>
|
2022-05-20 21:35:57 +08:00
|
|
|
<hr style="margin-top: 75px">
|
|
|
|
<div style="margin-top: 75px">
|
2022-06-29 17:28:26 +08:00
|
|
|
<p style="font-size: 1.2em;">
|
|
|
|
Or install the extension later and start discovering our features on our web app
|
|
|
|
</p>
|
|
|
|
<a class="px-4 py-3 mt-4 text-decoration-none text-center"
|
|
|
|
style="background:white;
|
|
|
|
color:black;
|
|
|
|
border-radius: 2px;
|
|
|
|
border:1px solid black;
|
|
|
|
display:block;
|
|
|
|
width:50%;"
|
|
|
|
href="{{ url_for('dashboard.index') }}">
|
|
|
|
Continue to our web app
|
|
|
|
</a>
|
2022-05-19 23:01:38 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-29 17:28:26 +08:00
|
|
|
{% endblock %}
|