-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (62 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
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'wasm-unsafe-eval' 'inline-speculation-rules' 'unsafe-inline' http://127.0.0.1:5500"> -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <meta http-equiv="expires" content="0"> -->
<title>Teams</title>
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/offline-language-english.css" />
<link rel="stylesheet" href="css/offline-theme-default-indicator.css" />
<script src="js/moment.min.js"></script>
<script src="js/moment-timezone-with-data-10-year-range.min.js"></script>
<link rel="shortcut icon" href="#">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<script src="js/dexie.js"></script>
<script src="js/offline.min.js"></script>
<script>
// Check that service workers are supported
if ("serviceWorker" in navigator) {
// Use the window load event to keep the page load performant
window.addEventListener("load", () => {
navigator.serviceWorker.register("./sw.js");
});
}
</script>
<script href="manifest.json"></script>
</head>
<body>
<nav>
<div class = "heading">
<h1>Longmetal 7127</h1>
</div>
<div class = "topnav">
<a href="index.html"> Teams </a>
<!-- <a href="pages/matchinfo.html"> Match Info </a> -->
<a href="pages/matchsummary.html"> Match Summary </a>
<a href="pages/aboutus.html"> About Us </a>
<a href="pages/debug.html" target="_blank"> Debug </a>
<!-- <button onclick="" style></button><input type="button" value="Submit" style="background: url(assets/refresh.jpg) no-repeat; width:70px; height:70px;"> -->
</div>
</nav>
<header>
<h1>Teams</h1>
<form id="new-team-form">
<input type="text" name="new-team-input" id="new-team-input" placeholder="Input Team Name" />
<input type="submit" id="new-team-submit" value="Add Team" />
</form>
</header>
<main>
<section class="team-list">
<h2>Team List</h2>
<div id="teams">
</div>
</section>
<!-- NEXT GOAL: to sync across multiple devices on Azure site? -->
<!-- Alternatively, convert the website to a PWA for more native experience -->
</main>
<script src="index.js"></script>
</body>
</html>