summaryrefslogtreecommitdiff
path: root/frontend/timer/index.html
blob: 64058436365501bbe5e0bc89a6e6b2321e7cf0ab (plain)
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
<!doctype html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<link rel="stylesheet" href="/style.css">
		<meta name="viewport" content="width=device-width, initial-scale=1.0" />
		<title>Victoria Hall LaundryWeb</title>
		<script src="https://cdn.onesignal.com/sdks/web/v16/OneSignalSDK.page.js" defer></script>
		<script>
			window.OneSignalDeferred = window.OneSignalDeferred || [];
			OneSignalDeferred.push(async function(OneSignal) {
				await OneSignal.init({
					appId: "83901cc7-d964-475a-90ec-9f854df4ba52",
					welcomeNotification: {
						disable: true,
					},
				});
			});
		</script>
	</head>
	<body>
		<div class="section-container row bg-1" style="height: 164px;">
			<span id="logo">Victoria Hall<br>LaundryWeb</span>
			<span id="logo-id">H1</span>
		</div>
		<div class="section-container row bg-2" style="padding: 8px; gap: 8px;">
			<button class="button button-tab bg-3" disabled>Timer</button>
			<button class="button button-tab bg-3" onclick="window.location.href = '/status/'">Status</button>
		</div>
		<div id="timer-container" class="section-container no-pad"></div>
		<script src="/main.js"></script>
		<script>
			startLoadTimers();
		</script>
	</body>
</html>