blob: 3ddf5b1d8f56da73403b4f8fc515ff594111b0fc (
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
|
<!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" />
<link rel="manifest" href="/manifest.json" />
<title>LaundryWeb</title>
</head>
<body>
<div class="section-container row bg-1" style="height: 164px;">
<span id="logo">Victoria Hall<br>LaundryWeb</span>
<span id="logo-id">H?</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">
<img src="/assets/img/washer_off.png" alt="" style="width: 2rem; margin-top: 3rem; margin-right: auto; margin-left: auto; opacity: .5;">
<span style="opacity: .5; margin-top: .5rem; margin-bottom: 2rem; display: block;">You currently don't have any laundry.</span>
</div>
<div class="section-container credits-container">
<span>Developed by <a href="https://altafcreator.com">Athaalaa Altaf Hafidz</a>, a fellow resident • <a href="https://git.altafcreator.com/victoriahall-laundryweb.git/">Source Code</a></span>
</div>
<a href="mailto:dev@altafcreator.com" class="feedback"><span>✉️ Bugs? Feedback?</span></a>
<script src="/main.js"></script>
<script>
startLoadTimers();
</script>
</body>
</html>
|