-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (72 loc) · 4.51 KB
/
Copy pathindex.html
File metadata and controls
101 lines (72 loc) · 4.51 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Ranger</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="Skeleton-2.0.4/css/normalize.css">
<link rel="stylesheet" href="Skeleton-2.0.4/css/skeleton.css">
<link rel="stylesheet" href="css/styles.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src='https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.js'></script>
<link href='https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.css' rel='stylesheet' />
</head>
<body>
<div id='map'></div>
<h2 id='header' class='brandon-bold'>RANGER</h2><img class="ranger" src="hat-02_720.png">
<div class='five columns offset-by-seven brandon-regular' id='sidebar'>
<input id='markerName' class='markerName side-text' placeholder='Marker Name'/>
<input id='beaconNum' class='beaconNum side-text' placeholder='Beacon Number'/>
<select id='trailName' class='trailName side-text' name="cars">
<option value="" disabled selected>Trail Name</option>
<option value=1>Domi</option>
<option value=2>Lafayette Heritage</option>
<option value=3>St. Marks</option>
</select>
<input id='loopName' class='loopName side-text' placeholder='Loop Name'/>
<input id='latitude' class='latitude side-text' placeholder='Latitude'/>
<input id='longitude' class='Longitude side-text' placeholder='Longitude'/>
<textarea id='summary' class='summary' placeholder='Marker Summary...'></textarea>
<div id="row1">
<input type='checkbox' class='hazards' name='hazards' value='Falling-rocks' id='Falling-rocks' />
<label for='Falling-rocks'><img src='./css/hazards/Falling-rocks.png' /></label>
<input type='checkbox' class='hazards' name='hazards' value='Bear-Crossing' id='Bear-Crossing' />
<label for='Bear-Crossing'><img src='./css/hazards/Bear-Crossing.png' /></label>
<input type='checkbox' class='hazards' name='hazards' value='Pets-on-leash' id='Pets-on-leash' />
<label for='Pets-on-leash'><img src='./css/hazards/Pets-on-leash.png' /></label>
</div>
<div id='row2'>
<input type='checkbox' class='hazards' name='hazards' value='Quiet' id='Quiet' />
<label for='Quiet'><img src='./css/hazards/Quiet.png' /></label>
<input type='checkbox' class='hazards' name='hazards' value='SafetyCaution-Alert' id='SafetyCaution-Alert' />
<label class='row2' for='SafetyCaution-Alert'><img src='./css/hazards/SafetyCaution-Alert.png' /></label>
<input type='checkbox' class='hazards' name='hazards' value='Stay-back-from-edge' id='Stay-back-from-edge' />
<label class='row2' for='Stay-back-from-edge'><img src='./css/hazards/Stay-back-from-edge.png' /></label>
</div>
<div id="row3">
<input type='checkbox' class='hazards' name='hazards' value='Walk-on-boardwalk' id='Walk-on-boardwalk' />
<label class='row2' for='Walk-on-boardwalk'><img src='./css/hazards/Walk-on-boardwalk.png' /></label>
<input type='checkbox' class='hazards' name='hazards' value='WAlk-on-pathway' id='WAlk-on-pathway' />
<label class='row2' for='WAlk-on-pathway'><img src='./css/hazards/WAlk-on-pathway.png' /></label>
<input type='checkbox' class='hazards' name='hazards' value='walkway' id='walkway' />
<label class='row2' for='walkway'><img src='./css/hazards/walkway.png' /></label>
</div>
<button id='submitMarker' class="side-text">Set Marker</button>
<button id='exitSide'>x</button>
</div>
<!-- <div id='test-click'></div> -->
<script src='js/jquery.js'></script>
<script src='js/scripts.js'></script>
</body>
</html>