diff options
| author | altaf-creator <dev@altafcreator.com> | 2026-01-20 23:21:10 +0800 |
|---|---|---|
| committer | altaf-creator <dev@altafcreator.com> | 2026-01-20 23:21:10 +0800 |
| commit | c4bb3217742e26210683d49715b37aa07955e689 (patch) | |
| tree | abeac79e43cd02bdf67d74ecac069d50fe31fa4b /frontend/admin/panel.html | |
| parent | 3907c41203568f69b947bdde8f16f505eb26ba6a (diff) | |
admin panel
Diffstat (limited to 'frontend/admin/panel.html')
| -rw-r--r-- | frontend/admin/panel.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/frontend/admin/panel.html b/frontend/admin/panel.html new file mode 100644 index 0000000..b912553 --- /dev/null +++ b/frontend/admin/panel.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>Victoria Hall LaundryWeb Admin Panel</title> + <link rel="stylesheet" href="./admin-style.css"> +</head> +<body> + <h1>LaundryWeb Admin Panel</h1> + <p id="unauthorised">You are unauthorised.</p> + <!-- even if you make this div visible, you won't be able to do anything if you are unauthorised --> + <div id="authorised"> + <div class="admin-machine-container"> + <div> + <img src="" alt=""> + <select id="h1w1" name=""> + <option value="normal">Normal</option> + <option value="down">Out of Service</option> + </select> + </div> + <div> + <img src="" alt=""> + <select id="h1d1" name=""> + <option value="normal">Normal</option> + <option value="down">Out of Service</option> + </select> + </div> + </div> + </div> +</body> +</html> |
