-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrol.html
88 lines (84 loc) · 2.32 KB
/
control.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
<html>
<head>
<title>Smart energy saving system</title>
<link href="default.css" rel="stylesheet" type="text/css" media="all" />
<link href="fonts.css" rel="stylesheet" type="text/css" media="all" />
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="base.css">
</head>
<body>
<div id="header-wrapper">
<div id="header" class="container">
<div id="logo">
<span class="icon icon-cog"></span>
<h1><a href="#">SMART ENERGY SAVING SYSTEM</a></h1>
</div>
<div id="menu">
<ul>
<li><a href="index.html" accesskey="1" title="">Homepage</a></li>
<li class="active"><a href="control.html" accesskey="2" title="">Control Appliances</a></li>
<li><a href="monitor.html" accesskey="3" title="">Monitor Appliances</a></li>
</ul>
</div>
</div>
</div>
<div class="wrapper">
<div id="banner" class="container"></div>
<div id="wrapper">
<div id="main">
<div class="container">
<div class="settings">
<div class="row">
<div class="headin">
<b>Room NO.</b>
</div>
<div class="headin">
<b>Toggle switch</b>
</div>
</div><!-- /row -->
<div class="row">
<div class="question">
Room 1
</div>
<div class="switch">
<input id="cmn-toggle-1" class="cmn-toggle cmn-toggle-round" type="checkbox" onClick=window.location='/?lightoff1'>
<label for="cmn-toggle-1"></label>
</div>
</div><!-- /row -->
<div class="row">
<div class="question">
Room 2
</div>
<div class="switch">
<input id="cmn-toggle-2" class="cmn-toggle cmn-toggle-round2" type="checkbox" onClick=window.location='/?lightoff1'>
<label for="cmn-toggle-2"></label>
</div>
</div><!-- /row -->
<div class="row">
<div class="question">
Room 3
</div>
<div class="switch">
<input id="cmn-toggle-3" class="cmn-toggle cmn-toggle-round3" type="checkbox" onClick=window.location='/?lightoff1'>
<label for="cmn-toggle-3"></label>
</div>
</div><!-- /row -->
<div class="row">
<div class="question">
Room 4
</div>
<div class="switch">
<input id="cmn-toggle-4" class="cmn-toggle cmn-toggle-round4" type="checkbox" onClick=window.location='/?lightoff1'>
<label for="cmn-toggle-4"></label>
</div>
</div><!-- /row -->
</div>
</div>
</div><!-- #main -->
</div>
</div>
<div class="footer">
<center><p>copyrights © 2015 HaViGo systems .inc<p></center>
</div>
</body>
</html>