-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·106 lines (103 loc) · 3.84 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Source+Sans+Pro' />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;1,700&display=swap" />
<link rel="stylesheet" href="./styles/main.css" />
<link rel="stylesheet" href="./styles/slider.css" />
<title>ZiegmaChat</title>
</head>
<body>
<div class="top-menu">
<div id="open" class="app-button disabled" title="Toggle visibility">
<div class="button-icon"></div>
</div>
<div id="game-mode" class="app-button disabled" title="Toggle game mode">
<div class="button-icon"></div>
</div>
<div id="copy" class="app-button disabled" title="Copy widget URL">
<div class="button-icon"></div>
</div>
<div id="apply" class="app-button disabled" title="Apply changes">
<div class="button-icon"></div>
</div>
<div id="discard" class="app-button disabled" title="Discard changes">
<div class="button-icon"></div>
</div>
</div>
<label id="settings-label">Settings</label>
<label id="tab-label">General</label>
<div class="navbar">
<div class="app-button tab-ref" id="general-settings" title="General settings"><img src="images/config.png"></div>
<div class="app-button tab-ref" id="theme-settings" title="Theme settings"><img src="images/theme.png"></div>
<div class="app-button tab-ref" id="streamerbot-settings" title="Streamer.bot settings"><img src="images/streamerbot.png"></div>
<div class="app-button" id="reset-to-defaults"><img src="images/reset.png" title="Reset to defaults"></div>
</div>
<div class="main">
<div class="content-wrapper">
<div class="tab general-settings active" data-title="General">
<div class="block">
<label>HTTP port</label>
<input id="http-port" type="number" />
</div>
<div class="block">
<label>Theme</label>
<select id="theme" class="base-qp-input">
<!--Dynamic content-->
</select>
</div>
<div class="block">
<label>Show test messages</label>
<br>
<label class="switch">
<input id="debug" class="base-qp-input" type="checkbox">
<span class="slider round"></span>
</label>
</div>
<div class="block">
<label>Character limit per message</label>
<input id="char-limit" class="base-qp-input" type="number" />
</div>
<div class="block">
<label>Hide links</label>
<br>
<label class="switch">
<input id="hide-links" class="base-qp-input" type="checkbox">
<span class="slider round"></span>
</label>
</div>
<div class="block">
<label>
Spam protection treshold
<br>
(0 to disable)
</label>
<input id="spam-protection" type="number" />
</div>
<div class="block">
<label>
List your bots
<br>
(One per row)
</label>
<textarea id="bots" class="base-qp-input" spellcheck="false"></textarea>
</div>
</div>
<div class="tab theme-settings" data-title="Theme">
</div>
<div class="tab streamerbot-settings" data-title="Streamer.bot">
<div class="block">
<label>Websocket port</label>
<input id="ws-port" class="base-qp-input" type="number" />
</div>
</div>
</div>
</div>
<script src="./renderer.js"></script>
</body>
</html>