2022-06-17 15:02:11 +00:00
|
|
|
{% extends "base.html.j2" %}
|
|
|
|
{% block content %}
|
|
|
|
<div id="box">
|
2022-06-23 13:27:13 +00:00
|
|
|
<div id="avatars">
|
|
|
|
<img src="{{ bot.display_avatar }}"
|
|
|
|
alt="{{ _('Bot Logo') }}"
|
|
|
|
width="80"
|
|
|
|
height="80"/>
|
|
|
|
</div>
|
|
|
|
<h1>{{ bot.display_name }}</h1>
|
|
|
|
<h2>{{ _('The discord scheduled event calendar generator') }}</h2>
|
2022-06-17 15:02:11 +00:00
|
|
|
<hr />
|
2022-06-23 13:27:13 +00:00
|
|
|
<h3>{{ _('This will allow you to:') }}</h3>
|
|
|
|
<ul id="scopes">
|
|
|
|
<li>
|
|
|
|
<i class="fa fa-custom-circle fa-check"></i>
|
|
|
|
{{ _('Subscribe to a calendar on Google, Yahoo, Outlook, Apple or any ICS complient software') }}
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<i class="fa fa-custom-circle fa-times"></i>
|
|
|
|
{{ _('Throwing you to a new isekai world') }}
|
|
|
|
</li>
|
2022-06-17 15:02:11 +00:00
|
|
|
</ul>
|
|
|
|
<hr />
|
2022-07-05 16:23:05 +00:00
|
|
|
{% include 'footer.html.j2' %}
|
2022-06-17 15:02:11 +00:00
|
|
|
</div>
|
2022-06-23 13:57:41 +00:00
|
|
|
<div id="buttons">
|
|
|
|
<a href="{{ url_for('login') }}">{{ _("Let's go!") }}</a>
|
|
|
|
</div>
|
2022-06-17 15:02:11 +00:00
|
|
|
{% endblock content %}
|