This commit is contained in:
parent
4125c20cd8
commit
bf2918795f
@ -6,10 +6,7 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="keywords" content="" />
|
||||
<title>
|
||||
{% block title %}
|
||||
{% endblock title %}
|
||||
</title>
|
||||
<title>{{ client.user.display_name }} - {{ _('The discord scheduled event calendar generator') }}</title>
|
||||
<link rel="stylesheet"
|
||||
href="{{ url_for('static', filename='css/font-awesome.min.css') }}"/>
|
||||
<link rel="stylesheet"
|
||||
|
@ -8,9 +8,7 @@
|
||||
width="173"/>
|
||||
</div>
|
||||
<hr />
|
||||
<span id="details">
|
||||
{{ error }}
|
||||
</span>
|
||||
<span id="details">{{ error }}</span>
|
||||
</div>
|
||||
<div id="buttons">
|
||||
<a href="{{ url_for('index') }}">
|
||||
|
@ -3,7 +3,10 @@
|
||||
<form action="" method="get">
|
||||
<div id="box">
|
||||
<div id="avatars">
|
||||
<img src="{{ client.user.display_avatar }}" alt="{{ _('Bot Logo') }}" width="80" height="80" />
|
||||
<img src="{{ client.user.display_avatar }}"
|
||||
alt="{{ _('Bot Logo') }}"
|
||||
width="80"
|
||||
height="80"/>
|
||||
</div>
|
||||
<h1>{{ client.user.display_name }}</h1>
|
||||
<h2>{{ _('The discord scheduled event calendar generator') }}</h2>
|
||||
@ -22,7 +25,8 @@
|
||||
<hr />
|
||||
<h3>{{ _('Choose a server:') }}</h3>
|
||||
<select name="guild">
|
||||
<option>Choose a server:</option>
|
||||
<option>
|
||||
</option>
|
||||
{% for guild in client.guilds %}
|
||||
<option value="{{ guild.id }}">
|
||||
{{ guild.name }}
|
||||
|
1
divent/templates/subscribe.html.j2
Normal file
1
divent/templates/subscribe.html.j2
Normal file
@ -0,0 +1 @@
|
||||
|
Loading…
Reference in New Issue
Block a user