-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogin.html
38 lines (38 loc) · 1.03 KB
/
login.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login || Hari</title>
<link rel="stylesheet" href="style/auth.css">
</head>
<body>
<div class="logo-image">
<img src="./images/hotel.jpg">
<h3 style="font-weight: bold; color: red; margin-left: 10px;">Hari</h3>
</div>
<div class="login-card">
<h1 style="text-align: center; margin:10px; color: red;">Hari wants you to Login</h1><hr>
<form class="form">
<div>
<label for="email">Email:</label>
<input type="email" class="form-control" autocomplete="off" required>
</div>
<div>
<label for="email">Password:</label>
<input type="password" class="form-control" required>
</div>
<div class="button">
<button type="submit" class="btn">Login</button>
</div>
</form>
<div class="forgot-password">
<a><h5>Forgot password??</h5></a>
</div>
<div class="have-account">
<a><h5>I don't have my hotel registered!</h5></a>
</div>
</div>
</body>
</html>