-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 984 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>
<meta charset=utf-8>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>Gate Opener</title>
<link rel="stylesheet" type="text/css" href="css/screen.css">
</head>
<body>
<h1>Gate Opener</h1>
<section id="main">
<form name="open-gate" action="#" method="post">
<p class="passkey-field">
<label for="passkey">Enter passkey:</label>
<input type="number" name="passkey" id="passkey" maxlength="4">
</p>
<p class="open-button">
<input type="submit" name="open-that-gate" id="open-that-gate" value="Open the gate">
</p>
</form>
</section>
<script src="js/jquery.js"></script>
<!-- <script src="js/handlebars.js"></script> -->
<!-- <script src="js/underscore.js"></script> -->
<script src="js/fastclick.js"></script>
<script src="js/app.js"></script>
</body>
</html>