blob: 76df35754cb0615bfce305af1f971ebb2c164067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!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>
<p id="passwordFeedback">Invalid password.</p>
<script src="./admin.js"></script>
<script>
autoLogin();
</script>
</body>
</html>
|