2022-05-08 14:02:19 +00:00
|
|
|
{% extends "base.html.j2" %}
|
|
|
|
{% block content %}
|
2022-09-09 09:08:31 +00:00
|
|
|
<form action="{{ url_for(".index") }}" method="get">
|
2022-05-08 14:02:19 +00:00
|
|
|
<div id="box">
|
|
|
|
<div id="avatars">
|
|
|
|
<img src="{{ client.user.display_avatar }}"
|
2023-11-07 00:26:12 +00:00
|
|
|
alt="{{ _("Bot Logo") }}"
|
2022-05-08 14:02:19 +00:00
|
|
|
width="80"
|
2023-11-07 00:26:12 +00:00
|
|
|
height="80" />
|
2022-05-08 14:02:19 +00:00
|
|
|
</div>
|
2022-09-09 09:22:12 +00:00
|
|
|
<h1>
|
|
|
|
<a href="{{ url_for(".index") }}">{{ client.user.display_name }}</a>
|
|
|
|
</h1>
|
2023-11-07 00:26:12 +00:00
|
|
|
<h2>{{ _("The discord scheduled event calendar generator") }}</h2>
|
2022-05-08 14:02:19 +00:00
|
|
|
<hr />
|
2023-11-07 00:26:12 +00:00
|
|
|
<h3>{{ _("This will allow you to:") }}</h3>
|
2022-05-08 14:02:19 +00:00
|
|
|
<ul id="scopes">
|
|
|
|
<li>
|
|
|
|
<i class="fa fa-custom-circle fa-check"></i>
|
2023-11-07 00:26:12 +00:00
|
|
|
{{ _("Subscribe to a calendar on Google, Outlook, Apple or any ICS complient software") }}
|
2022-05-08 14:02:19 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<i class="fa fa-custom-circle fa-times"></i>
|
2023-11-07 00:26:12 +00:00
|
|
|
{{ _("Throwing you to a new isekai world") }}
|
2022-05-08 14:02:19 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div id="buttons">
|
2022-09-12 17:39:50 +00:00
|
|
|
<a class="button" href="{{ url_for(".login") }}">{{ _("Let's go!") }}</a>
|
2022-05-08 14:02:19 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endblock content %}
|