-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetails.html
More file actions
66 lines (62 loc) · 1.68 KB
/
Copy pathdetails.html
File metadata and controls
66 lines (62 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
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Bookings | HotelBook</title>
<link rel="stylesheet" href="detailsstyle.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="details.html" target="_blank">Bookings</a></li>
<li><a href="checkin.html" class="btn " target="_blank" >Book Now</a></li>
</ul>
</nav>
<div class="bookings-container">
<h2>My Reservations</h2>
<p>Here are your current and past bookings.</p>
<table class="bookings-table">
<thead>
<tr>
<th>Booking ID</th>
<th>Check-in</th>
<th>Check-out</th>
<th>Guests</th>
<th>Room Type</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>#HB12345</td>
<td>2025-09-12</td>
<td>2025-09-15</td>
<td>2</td>
<td>Resort</td>
<td><span class="status confirmed">Confirmed</span></td>
</tr>
<tr>
<td>#HB12346</td>
<td>2025-10-01</td>
<td>2025-10-05</td>
<td>4</td>
<td>Villa</td>
<td><span class="status pending">Pending</span></td>
</tr>
<tr>
<td>#HB12347</td>
<td>2025-08-20</td>
<td>2025-08-22</td>
<td>1</td>
<td>Apartment</td>
<td><span class="status cancelled">Cancelled</span></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>