-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
executable file
·56 lines (53 loc) · 2.3 KB
/
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
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<meta id="viewport" name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<title>Is This Bike Stolen?</title>
<link rel="stylesheet" href="iphone/stylesheets/iphone.css" media="handheld"/>
<link rel="apple-touch-icon" href="iphone/images/apple-touch-icon.png" />
<link href="css/bike.css" type="text/css" rel="stylesheet" media="screen, print">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" language="javascript"></script>
<script src="js/bike.js" type="text/javascript" language="javascript"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-20088605-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="header">
<h1>Is This Bike Stolen?</h1>
</div>
<div id="container">
<div id="main">
<form id="serialTest" action="/dispatch" >
<input type="text" name="serial" id="serial">
<input type="submit" name="submit" id="submit" class="submit" value="Search">
<div class="result"></div>
</form>
<div class="question">
<a href="find.html">
Where can I find the serial number on a bike?<br />
<img src="images/serial_location.png" alt="Location of serial number on most bikes.">
</a>
</div>
</div>
<div id="links">
<a href="info.html#howthisworks">How does this work? </a>
<a href="info.html#mybikestolen">My bike was stolen!</a>
<a href="info.html#foundstolen">I found a stolen bike!</a>
<a href="https://webapp1.torontopolice.on.ca/BicycleRegistry/">Register your bike in Toronto</a>
<a href="about.html">About this project</a>
</div>
<div id="footer">
<a href="http://www.rhok.org/"><img src="images/rhok.png" alt="Random Hacks of Kindness" /></a>
<br/>
</div>
</body>
</html>