-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (90 loc) · 3.45 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!-- CMU Test Tracker '28 Admit map; ©️ 2024 Sander Vonk, all rights reserved -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CMU '28 Admit Map | CMUTT</title>
<link rel="stylesheet" href="css/index.css?v=[-version-number-]" />
<!-- icons -->
<link rel="shortcut icon" href="//cmutt.app/favicon.ico" type="image/x-icon" />
<link rel="icon" type="image/svg+xml" href="//cmutt.app/img/icons/favicon.svg" />
<link
rel="icon"
type="image/png"
sizes="16x16"
href="//cmutt.app/img/icons/favicon-16x16.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="//cmutt.app/img/icons/favicon-32x32.png"
/>
<!-- og -->
<meta property="og:title" content="CMU '28 Admit Map | CMUTT" />
<meta property="og:site_name" content="CMU Task Tracker" />
<meta
name="description"
content="CMU Class of '28 Admit Map; by CMUTT: A more effective way to manage test schedules, long-term assignments, and exam stress."
/>
<meta
property="og:description"
content="CMU Class of '28 Admit Map; by CMUTT: A more effective way to manage test schedules, long-term assignments, and exam stress."
/>
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:image" content="//cmutt.app/og/hero-img.png" />
<meta
property="og:image:alt"
content="A promotional image displaying the CMUTT insignia, alongside the text 'A more effective way to manage test schedules, long-term assignments, and exam stress.' and a button titled 'Join Now.'"
/>
<meta property="og:image:width" content="1200" />
<!-- libraries (Firebase Firestore + jQuery) -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="//www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="//www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
<script src="//www.gstatic.com/firebasejs/8.10.0/firebase-firestore.js"></script>
</head>
<body>
<div id="controls_wrapper">
<button id="toggle_place_mode" class="overlay_button">Add Marker</button>
<button
id="discard_place"
class="overlay_button controls_wrapper__edit_only"
style="display: none"
>
Discard
</button>
<button id="logout_btn" class="secondary controls_wrapper__no_edit" style="display: none">
Sign Out
</button>
<button id="edit_name" class="overlay_button edit_btn controls_wrapper__edit_only secondary">
Name
</button>
<button
id="edit_detail"
class="overlay_button edit_btn controls_wrapper__edit_only secondary"
>
Details
</button>
<button
id="edit_delete"
class="overlay_button edit_btn controls_wrapper__edit_only"
style="display: none"
>
<i>DELETE</i>
</button>
</div>
<div id="map"></div>
<div id="auth_wrapper">
<button id="login_btn" class="auth_child">Login (w/ Google)</button>
</div>
<script src="js/index.js?v=[-version-number-]"></script>
<script src="js/auth.js?v=[-version-number-]"></script>
<script
async
src="//maps.googleapis.com/maps/api/js?key=AIzaSyBe905q6VOk8Sfwl5mHpdWAfwqMLcdweFc&callback=preInit&loading=async"
></script>
</body>
</html>