-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (52 loc) · 2.25 KB
/
index.html
File metadata and controls
57 lines (52 loc) · 2.25 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hotel Management System - Login</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<div class="login-container">
<div class="login-box">
<div class="login-header">
<div class="login-logo">🏨</div>
<h1>Hotel Management</h1>
<p>Sign in to access your dashboard</p>
</div>
<form id="loginForm">
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" class="form-control" placeholder="Enter your username" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" class="form-control" placeholder="Enter your password" required>
</div>
<button type="submit" class="btn btn-primary">
<i class="fas fa-sign-in-alt"></i>
Sign In
</button>
</form>
<div class="demo-accounts">
<h4>Demo Accounts</h4>
<button class="demo-btn" onclick="loginAs('admin', 'admin123')">
<strong>Admin/Owner</strong><br>
<span>admin / admin123</span>
</button>
<button class="demo-btn" onclick="loginAs('reception', 'reception123')">
<strong>Reception</strong><br>
<span>reception / reception123</span>
</button>
<button class="demo-btn" onclick="loginAs('housekeeper', 'housekeeper123')">
<strong>Housekeeper</strong><br>
<span>housekeeper / housekeeper123</span>
</button>
</div>
</div>
</div>
<script src="js/data.js"></script>
<script src="js/auth.js"></script>
</body>
</html>