-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckin.html
More file actions
61 lines (53 loc) · 1.83 KB
/
Copy pathcheckin.html
File metadata and controls
61 lines (53 loc) · 1.83 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
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Book Your Stay | HotelBook</title>
<link rel="stylesheet" href="checkinstyle.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="signup.html">Sign up</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="checkin.html" class="btn " target="_blank" >Book Now</a></li>
</ul>
</nav>
<div class="booking-container">
<div class="booking-box">
<h2>Book Your Stay</h2>
<p>Fill in the details below to reserve your room</p>
<form>
<div class="form-group">
<label for="checkin">Check-in Date</label>
<input type="date" id="checkin" required>
</div>
<div class="form-group">
<label for="checkout">Check-out Date</label>
<input type="date" id="checkout" required>
</div>
<div class="form-group">
<label for="guests">Number of Guests</label>
<input type="number" id="guests" min="1" value="1" required>
</div>
<div class="form-group">
<label for="room-type">Room Type</label>
<select id="room-type" required>
<option value="" disabled selected>Select a room</option>
<option value="apartment">Apartment</option>
<option value="resort">Resort</option>
<option value="villa">Villa</option>
<option value="hotel">Hotel</option>
</select>
</div>
<button type="submit" class="book-btn">Book Now</button>
</form>
</div>
</div>
</body>
</html>