-
Notifications
You must be signed in to change notification settings - Fork 10
/
settings.html
100 lines (93 loc) · 3.39 KB
/
settings.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>WLED</title>
<link type="text/css" rel="stylesheet" href="css/materialize.min.css">
<link href="css/style.css" rel="stylesheet">
<meta charset="UTF-8">
</head>
<body>
<ul>
<li><a href="index.html"><img src="images/icon_back.png" alt="back" style="float: left;" height=75></a></li>
<li><img src="images/wled_logo.png" alt="logo" id="logo" class="logo" height=75></li>
<li><a onclick="openWiki()"><img src="images/icon_wiki.png" alt="icon_wiki" style="float: right;" height=75></a></li>
</ul>
<br><br><br><br><br>
<div class="settings">
<table>
<tr>
<td>Autostart</td>
<td>
<!-- Autostart Switch -->
<div class="switch">
<label>
Off
<input type="checkbox" id="autostart" disabled>
<span class="lever"></span>
On
</label>
</div>
</td>
</tr>
<tr>
<td>Autostart hidden</td>
<td>
<!-- Autostart hidden Switch -->
<div class="switch">
<label>
Off
<input type="checkbox" id="autostartHidden" disabled>
<span class="lever"></span>
On
</label>
</div>
</td>
</tr>
<tr>
<td>Enable tray</td>
<td>
<!-- Autostart hidden Switch -->
<div class="switch">
<label>
Off
<input type="checkbox" id="tray">
<span class="lever"></span>
On
</label>
</div>
</td>
</tr>
</table>
<p class="red-text hidden" style="display: none;" id="restartRequired">You must restart this program to apply these changes</p>
<br>
<div style=" border: 2px solid white; border-radius: 0px 0px 25px 25px;">
<ul class="collection with-header" id="autoTurnOn" style="text-align: left; margin-top: 0px;">
<li class="collection-header" style="text-align: center;">
<h5>Turn on lights automatically at startup
</li>
</ul>
<table>
<tr>
<td>Turn on lights automatically only at autostart</td>
<td>
<div class="switch">
<label>
Off
<input type="checkbox" id="autoTurnOnOnlyAtAutostart">
<span class="lever"></span>
On
</label>
</div>
</td>
</tr>
</table>
</div>
</div>
<script src="js/materialize.min.js"></script>
<script src="js/script.js"></script>
<script src="js/settings.js"></script>
<script>
M.AutoInit();
</script>
</body>
</html>