-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAdminPage.html
59 lines (50 loc) · 1.6 KB
/
AdminPage.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>Pluto Hotels Ltd</title>
<link rel="Stylesheet" href="Styles.css">
</head>
<body>
<header>
<a href="Main.html"><img src="logo.png" class="menu-icon"></a>
<div class="navbar">
<nav>
<ul>
<li><a href="">About Us</a></li>
<li><a href="ContactUs.html">Contact Us</a></li>
<li> <a href="Account.html">Account</a></li>
</ul>
</nav>
</div>
<h1 align="left">Book your next Destination<br></h1>
</header>
<div class="loginForm">
<h1>Have an account? Log-in here!</h1>
<br>
<br>
<h2>Enter your credentials:</h2>
<br>
<form action="">
<label for="userEmail">Email:</label><br>
<input type="text" id="userEmail" name="userEmail" placeholder="Enter your email" required>
<br> <br>
<label for="userPass">Password:</label><br>
<input type="password" name="userPass" id="userPass" placeholder="Enter your password" required>
<br> <br>
<button type="submit" class="loginSubmit">Log-in</button>
<br>
<br>
<p>No account? Create one <a href="Register.html">here</a>.</p>
</form>
</div>
</div>
<footer align="center">Copyright ©2022 Pluto Hotels Ltd
<p>Some hotels require you to cancel more than 24 hours before check-in. Details on site.
© 2024 Pluto Hotels Ltd.com is an Expedia Group company. All rights reserved.</p>
<a href = "mailto: contact@plutohotels.com">contact@plutohotels.com</a>
</footer>
</body>
</html>