blob: b9125537ec268f6f6ba28b1cb840592f38765f0b (
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
|
<!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>
|