-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.html
34 lines (29 loc) · 884 Bytes
/
config.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
<html>
<head>
<script src="https://extension-files.twitch.tv/helper/v1/twitch-ext.min.js"></script>
<script src="./js/common.js"></script>
<script src="./js/config.js"></script>
<link rel="stylesheet" href="./css/configStyle.css">
</head>
<body>
<div id="menu">
</div>
<div id="editEvent" style="display:none">
<p>Event Name:</p>
<p id='newEventName'></p>
<p>Event Command:</p>
<p id='newEventCommand'></p>
<label>Cost:</label><br>
<input type='number' id='newEventCost' min='50' max='10000' step='50'><br>
<p>Enabled:</p>
<label class='switch'>
<input type='checkbox' id='isEnabled'>
<span class='slider round'></span>
</label>
<br>
<br>
<button id="cancel">Cancel</button>
<button id="saveEvent">Save Event</button><br>
</div>
</body>
</html>