-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
57 lines (48 loc) · 1.68 KB
/
Copy pathsignup.html
File metadata and controls
57 lines (48 loc) · 1.68 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>Sign Up | HotelBook</title>
<link rel="stylesheet" href="signupstyle.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="logo">HotelBook</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="checkin.html" class="btn " target="_blank" >Book Now</a></li>
</ul>
</nav>
<div class="signup-container">
<div class="signup-box">
<h2>Create an Account</h2>
<p>Join HotelBook and start booking your perfect stay today</p>
<form>
<div class="form-group">
<label for="fullname">Full Name</label>
<input type="text" id="fullname" placeholder="Enter your full name" required>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" placeholder="Create a password" required>
</div>
<div class="form-group">
<label for="confirm">Confirm Password</label>
<input type="password" id="confirm" placeholder="Confirm your password" required>
</div>
<button type="submit" class="signup-btn">Sign Up</button>
</form>
<p class="login-text">
Already have an account? <a href="login.html">Login</a>
</p>
</div>
</div>
</body>
</html>