blob: 8d415a105be43afc2e43398b85c589ac668b0e54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!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>
</body>
</html>
|