forked from musa-6110-fall-2023/dashboard-project
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (71 loc) · 2.96 KB
/
Copy pathindex.html
File metadata and controls
86 lines (71 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>LandCare Program Explorer</title>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<script defer src="js/main.js"></script>
</head>
<body>
<h1 class="main-title">
LandCare Program Explorer
<img src = "pic/title-1.jpg" alt = "bg" class = "bg">
</h1>
<div class = "container">
<div class = "sidebar">
<div class = "zip-filter">
<h3>Search by ZIP Code</h3>
<input type = "text" class = "searchbox" id = "zipInput" placeholder = "Please enter a ZIP Code">
<button class = "filterbutton" id = "zipFilterButton">Search</button>
<button class = "filterbutton-reset" id = "resetZipButton">Reset</button>
</div>
<div class = "address-filter">
<input type = "text" class = "searchbox" id="addressInput" placeholder = "Please enter the address">
<button class = "filterbutton" id = "addressFilterButton">Search</button>
<button class = "filterbutton-reset" id = "resetAddressButton">Reset</button>
</div>
<div class = "program">
<h3>Program</h3>
<div>
<label>
<input type = "checkbox" value = "PLC" class = "program-checkbox" >PLC
</label>
</div>
<div>
<label>
<input type = "checkbox" value = "CLC" class = "program-checkbox" >CLC
</label>
</div>
<div>
<label>
<input type = "checkbox" value = "MO" class = "program-checkbox" >MO
</label>
</div>
</div>
<div class = "Stabilized">
<h3>Stabilized or not</h3>
<div>
<label>
<input type = "checkbox" value = "YES" class = "stabilized-checkbox"> Yes
</label>
</div>
<div>
<label>
<input type = "checkbox" value = "NO" class = "stabilized-checkbox"> No
</label>
</div>
</div>
<div class="site-list">
</div>
</div>
<div id = "map"></div>
</div>
</body>
</html>