diff options
| author | altaf-creator <dev@altafcreator.com> | 2025-11-29 12:48:14 +0700 |
|---|---|---|
| committer | altaf-creator <dev@altafcreator.com> | 2025-11-29 12:48:14 +0700 |
| commit | b107add5afb23a710e3297249e314eeee6bf0563 (patch) | |
| tree | aa37a07ce05ef24ebbb73728871d9ae33b94079c /frontend/timer/index.html | |
| parent | 3e0e77713e73b03e98bdfeb9bf8bd9cfa1b6c88e (diff) | |
a lot of progress, frontend, a lot of new backend methods
Diffstat (limited to 'frontend/timer/index.html')
| -rw-r--r-- | frontend/timer/index.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/frontend/timer/index.html b/frontend/timer/index.html new file mode 100644 index 0000000..6405843 --- /dev/null +++ b/frontend/timer/index.html @@ -0,0 +1,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> |
