-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_old.html
More file actions
80 lines (67 loc) · 2.65 KB
/
index_old.html
File metadata and controls
80 lines (67 loc) · 2.65 KB
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
<html>
<script src="css/source-sans-pro.js"></script>
<script src="lib/handlebars.js"></script>
<script src="cordova.js"></script>
<script type="text/javascript" src="js\PushNotification.js"></script>
<script type="text/javascript" src="js\PushCustom.js"></script>
<script src="js/app.js"></script>
<head>
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<!-- Home page view -->
<script id="home-tpl" type="text/x-handlebars-template">
<div class='header'><h1>Home</h1></div>
<div id='home_container'>
<br>
<a href="http://192.168.0.24:3000/" class="myButton">Login</a><br><br>
<a href="#functions" class="myButton">Functions</a><br><br>
<a href="#about" class="myButton">About</a>
</div>
</script>
<!-- Login page view -->
<script id="login-tpl" type="text/x-handlebars-template">
<div class='header'><a href='#home' class="button header-button header-button-left">Back</a><h1>Login</h1></div>
<div id='login_contatiner'>
<br>
<input type="text" name="user_name"><br>
<input type="text" name="password"><br><br>
<input type="submit" value="Submit"><br><br>
</div>
</script>
<!-- Function page view -->
<script id="func-tpl" type="text/x-handlebars-template">
<div class='header'><a href='#home' class="button header-button header-button-left">Back</a><h1>Functions</h1></div>
<div id='function_container'>
<br>
<button type="button" class="myButton">Open Front Door</button><br><br>
<button type="button" class="myButton">Open Garage Door</button><br><br>
<button type="button" class="myButton">Secure House</button><br><br>
<button type="button" class="myButton">Unsecure House</button>
</div>
</script>
<!-- About page view -->
<script id="abt-tpl" type="text/x-handlebars-template">
<div class='header'><a href='#home' class="button header-button header-button-left">Back</a><h1>About</h1></div>
<div id='about_container'>
<p>This is the about page!</p>
</div>
</script>
<!-- Location page view -->
<script id="abt-tpl" type="text/x-handlebars-template">
<div class='header'><a href='#home' class="button header-button header-button-left">Back</a><h1>Locations</h1></div>
<div id='location_container'>
<p>This is the location page!</p>
</div>
</script>
<script src="lib/jquery-1.8.2.min.js"></script>
<script src="js/storage/memory-store.js"></script>
<script src="js/HomeView.js"></script>
<script src="js/EmployeeView.js"></script>
<script src="js/LoginView.js"></script>
<script src="js/FunctionsView.js"></script>
<script src="js/AboutView.js"></script>
<script src="js/main.js"></script>
</body>
<script src="phonegap.js"></script>
</html>