blob: 8ce5812c79a124b83a476adf088bc41e7406a653 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!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 Log In</h1>
<input type="password" id="pwfield"> <button onclick="login()">Log In</button>
<script src="./admin.js"></script>
<script>
checkLoginStatus();
</script>
</body>
</html>
|