-
Notifications
You must be signed in to change notification settings - Fork 10
/
add.html
60 lines (52 loc) · 1.91 KB
/
add.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
<!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><img src="images/icon_check.png" alt="check" style="float: right;" height=75 onclick="addLightManually()"></li>
</ul>
<br><br><br><br><br>
<div class="row">
<div class="col s6">
<a class="waves-effect waves-light btn-large" id="discoverLightsButton">Discover lights...</a>
</div>
<div class="col s6">
<div class="input-field col s12" style="width: 80%;">
<select id="scanMethod">
<option value="" disabled>Choose your scan method</option>
<option value="bonjour" selected>Bonjour (recommended)</option>
<option value="bruteforce">Brute-Force</option>
</select>
<label>Scan method</label>
</div>
</div>
</div>
<div class="row s6" id="loader" style="display: none;">
<div class="col s6" style="position: relative; left: 25%;">
<div class="progress">
<div class="indeterminate"></div>
</div>
</div>
</div>
<hr>
<br>
Add a light manually:<br><br>
<div class="input-field" style="width: 80%; margin: auto;">
<input placeholder="192.168.4.1" id="ip" type="text">
<label for="ip">IP address</label>
</div>
<script src="js/materialize.min.js"></script>
<script src="js/script.js"></script>
<script src="js/add.js"></script>
<script>
M.AutoInit();
</script>
</body>
</html>