-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 2.28 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
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>VATSIM AFV Map</title>
<meta name="description" content="VATSIM AFV Map" />
<meta name="keywords" content="vatsim" />
</head>
<body class="h-100 bg-black">
<div class="container-fluid d-flex h-100 flex-column">
<img class="brand-logo" alt="VATSIM" src="/img/logo.png" />
<div class="mb-1 mt-3 mt-md-2 text-center text-md-start">
<h3 class="text-white">
<span id="online-count">
<i class="fas fa-spinner fa-pulse"></i>
</span>
</h3>
</div>
<div class="row flex-grow-1">
<div class="col-md-3 mb-4 mb-md-0">
<section class="card h-100 bg-dark">
<div class="card-body d-flex flex-column">
<p>
<button
class="btn btn-secondary btn-sm"
id="toggle-pilot-ranges"
>
Toggle Pilot Rings
</button>
<button class="btn btn-secondary btn-sm" id="toggle-atc-ranges">
Toggle ATC Rings
</button>
<button
class="btn btn-secondary btn-sm"
id="toggle-other-ranges"
>
Toggle VOI Only
</button>
</p>
<div class="position-relative h-100">
<div
class="position-absolute top-0 h-100 w-100 overflow-scroll"
id="client-list"
></div>
</div>
</div>
</section>
</div>
<div class="col-md-9">
<section class="card h-100 w-100 bg-dark">
<div class="card-body rounded hide-other-ranges" id="map"></div>
</section>
</div>
</div>
<footer class="py-2 text-white-50">
Copyright ©
<script>
document.write(new Date().getFullYear());
</script>
VATSIM Inc.
<a href="https://github.com/vatsimnetwork/afv-map" target="_blank">
Contribute on GitHub.
</a>
</footer>
</div>
<script type="module" src="src/main.ts"></script>
</body>
</html>