-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfirearmPage.html
79 lines (72 loc) · 2.72 KB
/
firearmPage.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
<!DOCTYPE html>
<html>
<script src="script.js"></script>
<head>
<title>Firearm Reporting</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<!-- For HERE location -->
<script src="http://js.api.here.com/v3/3.0/mapsjs-core.js" type="text/javascript" charset="utf-8"></script>
<script src="http://js.api.here.com/v3/3.0/mapsjs-service.js" type="text/javascript" charset="utf-8"></script>
</head>
<body class="is-preload">
<button onclick="window.location.href='./index.html'">Back</button>
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<div class="inner">
<!-- Logo -->
<a href="index.html" class="logo">
<span class="symbol"><img src="images/logo.svg" alt="" /></span><span class="title">Phantom</span>
</a>
</div>
</header>
<div id="firearmSubpage">
<header><h1> Firearm sub page</h1></header>
<h3>Number of shots heard</h3>
<div class="row gtr-uniform">
<div class="col-4 col-12-small">
<input type="radio" id="1shot" name="numShots" value="1 gunshot">
<label for="1shot">1 shot</label>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="2shot" name="numShots" value="2 to 6 gunshots">
<label for="2shot">2-6 shots</label>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="6shot" name="numShots" value="Greater than 6 gunshots">
<label for="6shot"> > 6 shots</label>
</div>
</div>
<h3>Distance from your location</h3>
<div class="row gtr-uniform">
<div class="col-4 col-12-small">
<input type="radio" id="1mile" name="shotDistance" value="less than 1 mile">
<label for="1mile">1 mile</label>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="2mile" name="shotDistance" value="1 to 5 miles">
<label for="2mile">2-5 miles</label>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="5mile" name="shotDistance" value="greater than 5 miles">
<label for="5mile"> > 5 miles</label>
</div>
</div>
<div class="row gtr-uniform">
<div class="col-12">
<h3>Addtional information</h3>
<textarea id ="additionalShotInfo" rows="4" placeholder="(optional) Provide additional information"></textarea>
</div>
<div class="col-12">
<button onclick="sendShotMessage()">Submit</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>