-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview-events.html
More file actions
59 lines (54 loc) · 2.36 KB
/
view-events.html
File metadata and controls
59 lines (54 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>View Events | LaxMap 🥍</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" crossorigin="" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
</head>
<body>
<div id="header-placeholder"></div>
<main>
<div class="container">
<h2>Upcoming Lacrosse Events</h2>
<div id="map"></div>
<div class="filters-container">
<div class="filter-group">
<label for="gameTypeFilter">Game Type:</label>
<select id="gameTypeFilter">
<option value="all">All</option>
<option value="field">Field</option>
<option value="box">Box</option>
<option value="sixes">Sixes</option>
<option value="clinic">Clinic</option>
</select>
</div>
<div class="filter-group">
<label for="genderFilter">Gender:</label>
<select id="genderFilter">
<option value="all">All</option>
<option value="men">Men</option>
<option value="women">Women</option>
<option value="both">Both</option>
</select>
</div>
</div>
<h3>Event List</h3>
<div id="event-list">
<p>Loading events...</p>
</div>
<div id="message"></div>
</div>
</main>
<<div id="footer-placeholder"></div>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" crossorigin=""></script>
<script type="module" src="script.js"></script>
<script src="include.js"></script>
<script src="load-header.js"></script>
</body>
</html>