-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
28 lines (24 loc) · 991 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>Spacebot</title>
<link rel = "stylesheet" href = "public/styles/style.css">
<script src = "public/scripts/check_token.js"></script>
<script src = "public/scripts/add_command.js"></script>
<script src = "public/scripts/check_input.js"></script>
<script src = "public/scripts/save_config.js"></script>
</head>
<body>
<container>
<img src = "public/icon.png" id = "profile-image">
<name id = "name">Spacebot</name>
<input-field class = "bot-token">
<input-name>bot token</input-name>
<input oninput = "check_token(this)" id = "token-input">
</input-field>
<commands-field></commands-field>
<save-button id = "save-button" onclick = "save_config()">Save</save-button>
</container>
<div id = "notification-banner"></div>
</body>
</html>