-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (26 loc) · 909 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Leds</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/checkbox.css">
</head>
<body>
<div class="container">
<h1 class="text-center">Leds</h1>
<div class="wrap-checkbox danger">
<input type="checkbox" name="red" id="led9" class="js-check" disabled>
<label for="led9"></label>
</div>
<div class="wrap-checkbox warning">
<input type="checkbox" name="yellow" id="led11" class="js-check" disabled>
<label for="led11"></label>
</div>
<div class="wrap-checkbox success">
<input type="checkbox" name="green" id="led13" class="js-check" disabled>
<label for="led13"></label>
</div>
<script src="/socket.io/socket.io.js"></script>
<script src="assets/js/app.js"></script>
</body>
</html>