-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
48 lines (38 loc) · 1.86 KB
/
admin.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
<!DOCTYPE html>
<html>
<head>
<title>Admin Control</title>
<link rel="icon" href="assets/icon.png">
<link rel="stylesheet" href="css/admin.css">
<link rel="manifest" href="manifest.json">
<viewport content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>PIBA - Animation Controls</h1>
<div class="controls">
<button id="blackout" style="background-color: black; color: white;">Blackout</button>
<button id="logo" style="background-color: #007bff; color: white;">Logo</button>
<button id="blink-default" style="background-color: #2890a7; color: white;">Blink (Default)</button>
<button id="blink-60-seconds" style="background-color: #286ea7; color: white;">Blink (60s)</button>
<button id="blink-10-seconds" style="background-color: #2848a7; color: white;">Blink (10s)</button>
<button id="happy-new-year" style="background-color: #515151; color: white;">Feliz Ano Novo</button>
<button id="blink" style="background-color: #28a745; color: white;">Blink</button>
<div id="color-controls">
<div id="color-controls-1">
<label for="color1">Color 1:</label>
<input type="color" id="color1" value="#000000">
</div>
<div id="color-controls-2">
<label for="color2">Color 2:</label>
<input type="color" id="color2" value="#ffffff">
</div>
<div id="color-controls-3">
<label id="blink-time-text" for="blink-time">Blink time (seg):</label>
<input type="range" id="blink-time" value="1" min="0.1" max="2" step="0.1">
</div>
</div>
</div>
<script type="module" src="js/firebase-config.js"></script>
<script type="module" src="js/admin.js"></script>
</body>
</html>