-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
64 lines (52 loc) · 1.88 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Inputs</title>
<script src="popup.js" defer></script>
<style>
#colorPicker {
width: 200px;
height: 200px;
border: 1px solid black;
cursor: pointer;
}
</style>
</head>
<body>
<div>
<h2>Color Setup</h2>
<div id="staticBtns" style="margin-left: 10px; margin-bottom: 5px;">
<button id="ConnectBackgroundBtn">Connect to BusyLight</button>
<button id="ReconnectBtn">Reconnect</button>
<button id="ColorPickerBtn">Select Custom Color</button>
</div>
<div id="modeContainerBtns" style="margin-left: 8px; margin-bottom: 5px;"></div>
<div style="margin-left: 10px;">
<div id="colorsDiv">
</div>
<div id="colorDiff" style="display: inline-block; min-width: 250px; min-height: 250px;; border-radius: 25px;">
</div>
</div>
<div id="Testing">
<label for="input1">Vol:</label><br>
<input type="text" id="input1"><br><br>
<label for="input2">Update:</label><br>
<input type="text" id="input2"><br><br>
<label for="input3">Ring:</label><br>
<input type="text" id="input3"><br><br>
<button id="testBtn">test</button>
<button id="test2Btn">test2</button>
<div>
<h2>Status</h2>
<label for="output1">AFK: </label><br>
<input type="text" id="output1"><br><br>
<label for="output2">Vom Platz: </label><br>
<input type="text" id="output2"><br><br>
<iframe src="busyLight-iframe.html"></iframe>
</div>
</div>
</div>
</body>
</html>