summaryrefslogtreecommitdiff
path: root/frontend/admin/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/admin/index.html')
-rw-r--r--frontend/admin/index.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/frontend/admin/index.html b/frontend/admin/index.html
new file mode 100644
index 0000000..76df357
--- /dev/null
+++ b/frontend/admin/index.html
@@ -0,0 +1,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>