-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (58 loc) · 3.69 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
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- <meta
charset="UTF-8"
name="viewport"
content="initial-scale=1,user-scalable=no,viewport-fit=cover"
/> -->
<link rel="apple-touch-startup-image" media="(device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3)" href="/tennis-tournament-finder/images/splash-13pro.png" />
<link rel="apple-touch-startup-image" media="(device-width: 482px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3)" href="/tennis-tournament-finder/images/splash-13promax.png" />
<link rel="apple-touch-startup-image" media="(device-width: 393px) and (device-height: 852px) and (-webkit-device-pixel-ratio: 3)" href="/tennis-tournament-finder/images/splash-14pro.png" />
<link rel="apple-touch-startup-image" media="(device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3)" href="/tennis-tournament-finder/images/splash-14promax.png" />
<link rel="canonical" href="https://timoknapp.github.io/tennis-tournament-finder/" />
<link rel="manifest" href="/tennis-tournament-finder/manifest.json">
<!-- local manifest -->
<!-- <link rel="manifest" href="/manifest-local.json"> -->
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-hoalWLoI8r4UszCkZ5kL8vayOGVae1oxXe/2A4AO6J9+580uKHDO3JdHb7NzwwzK5xr/Fs0W40kiNHxM9vyTtQ=="
crossorigin=""/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.5.3/MarkerCluster.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.5.3/MarkerCluster.Default.min.css" />
<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=Ubuntu+Mono:wght@400;700&display=swap" rel="stylesheet">
<!-- Make sure you put this AFTER Leaflet's CSS -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ==" crossorigin=""></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.5.3/leaflet.markercluster.js"></script>
<link rel="stylesheet" type="text/css" href="css/main.css">
<title>Tennis Tournament Finder</title>
<script>navigator.serviceWorker.register("service-worker.js")</script>
</head>
<body>
<div class="sideBar">
<div class="sideBarElement title">🎾 Tennis Tournament Finder</div>
<div class="sideBarElement filter">
<form name="searchForm" action="javascript:getTournamentsByDate(dateFrom.value, dateTo.value)">
<div class="filterContainer">
<label for="dateFrom">Date from:</label>
<input class="filterElement" type="date" id="dateFrom" name="dateFrom">
</div>
<div class="filterContainer">
<label for="dateTo">Date to:</label>
<input class="filterElement" type="date" id="dateTo" name="dateTo">
</div>
<div class="filterContainer submitContainer">
<input class="submitBtn" type="submit" value="Submit">
</div>
</form>
</div>
</div>
<div id="map">
<div id="loading" class="loading">Loading…</div>
</div>
<script src="script/main.js"></script>
</body>
</html>