-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRooms.php
179 lines (172 loc) · 8.26 KB
/
Rooms.php
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php require('inc/links.php') ?>
<title>Rooms</title>
</head>
<body class="bg-light">
<?php require('inc/header.php'); ?>
<div class="my-5 px-4">
<h2 class="fw-bold h-font text-center">Rooms</h2>
<div class="h-line bg-dark"></div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-12 mb-lg-0 mb-4 px-lg-0">
<nav class="navbar navbar-expand-lg navbar-light bg-white rounded shadow">
<div class="container-fluid flex-lg-column align-items-stretch">
<h4 class="mt-2">FILTER</h4>
<button class="navbar-toggler shadow-none" type="button" data-bs-toggle="collapse" data-bs-target="#filterDropdown" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse flex-column align-items-stretch mt-2" id="filterDropdown">
<div class="border bg-light p-3 rounded mb-3">
<h5 class="mb-3 mt-3" style="font-size: 18px;">CHECK AVAILABILITY</h5>
<label class="form-label">Check-in</label>
<input type="date" class="form-control shadow-none mb-3">
<label class="form-label">Check-out</label>
<input type="date" class="form-control shadow-none">
</div>
<div class="border bg-light p-3 rounded mb-3">
<h5 class="mb-3" style="font-size: 18px;">FACILITIES</h5>
<div class="mb-2">
<input type="checkbox" id="f1" class="form-check-input shadow-none me-1">
<label class="form-check-label" for="f1">Facilities one</label>
</div>
<div class="mb-2">
<input type="checkbox" id="f2" class="form-check-input shadow-none me-1">
<label class="form-check-label" for="f2">Facilities two</label>
</div>
<div class="mb-2">
<input type="checkbox" id="f3" class="form-check-input shadow-none me-1">
<label class="form-check-label" for="f3">Facilities three</label>
</div>
</div>
<div class="border bg-light p-3 rounded mb-3">
<h5 class="mb-3" style="font-size: 18px;">GUESTS</h5>
<div class="d-flex">
<div class="me-3">
<label class="form-label">Adults</label>
<input type="number" class="form-control shadow-none">
</div>
<div>
<label class="form-label">Children</label>
<input type="number" class="form-control shadow-none">
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
<div class="col-lg-9 col-md-12 px-4">
<div class="card mb-4 border-0 shadow">
<div class="row g-0 p-3 align-items-center">
<div class="col-md-5 mb-lg-0 mb-md-0 mb-3">
<img src="images/rooms/IMG_11892.png" class="img-fluid rounded">
</div>
<div class="col-md-5 px-lg-3 px-md-3 px-0">
<h5 class="mb-1">Simple Room Name</h5>
<div class="features mb-3">
<h6 class="mb-1">Features</h6>
<span class="badge rounded-pill text-bg-light text-wrap">2 Rooms</span>
<span class="badge rounded-pill text-bg-light text-wrap">2 Bathrooms</span>
<span class="badge rounded-pill text-bg-light text-wrap">2 Balcony</span>
<span class="badge rounded-pill text-bg-light text-wrap">3 Sofa</span>
</div>
<div class="facilities mb-3">
<h6 class="mb-1">Facilities</h6>
<span class="badge rounded-pill text-bg-light text-wrap">Wifi</span>
<span class="badge rounded-pill text-bg-light text-wrap">Television</span>
<span class="badge rounded-pill text-bg-light text-wrap">AC</span>
<span class="badge rounded-pill text-bg-light text-wrap">Heater</span>
</div>
<div class="guests">
<h6 class="mb-1">Guests</h6>
<span class="badge rounded-pill text-bg-light text-wrap">5 Adults</span>
<span class="badge rounded-pill text-bg-light text-wrap">4 Children</span>
</div>
</div>
<div class="col-md-2 mt-lg-0 mt-md-0 mt-4 text-center">
<h6 class="mb-3">₹200 Per Night</h6>
<a href="#" class="btn btn-sm w-100 text-white custom-bg shadow-none mb-2">Book Now</a>
<a href="#" class="btn btn-sm w-100 btn-outline-dark shadow-none">More Details</a>
</div>
</div>
</div>
<div class="card mb-4 border-0 shadow">
<div class="row g-0 p-3 align-items-center">
<div class="col-md-5 mb-lg-0 mb-md-0 mb-3">
<img src="images/rooms/IMG_11892.png" class="img-fluid rounded">
</div>
<div class="col-md-5 px-lg-3 px-md-3 px-0">
<h5 class="mb-1">Simple Room Name</h5>
<div class="features mb-3">
<h6 class="mb-1">Features</h6>
<span class="badge rounded-pill text-bg-light text-wrap">2 Rooms</span>
<span class="badge rounded-pill text-bg-light text-wrap">2 Bathrooms</span>
<span class="badge rounded-pill text-bg-light text-wrap">2 Balcony</span>
<span class="badge rounded-pill text-bg-light text-wrap">3 Sofa</span>
</div>
<div class="facilities mb-3">
<h6 class="mb-1">Facilities</h6>
<span class="badge rounded-pill text-bg-light text-wrap">Wifi</span>
<span class="badge rounded-pill text-bg-light text-wrap">Television</span>
<span class="badge rounded-pill text-bg-light text-wrap">AC</span>
<span class="badge rounded-pill text-bg-light text-wrap">Heater</span>
</div>
<div class="guests">
<h6 class="mb-1">Guests</h6>
<span class="badge rounded-pill text-bg-light text-wrap">5 Adults</span>
<span class="badge rounded-pill text-bg-light text-wrap">4 Children</span>
</div>
</div>
<div class="col-md-2 mt-lg-0 mt-md-0 mt-4 text-center">
<h6 class="mb-3">₹200 Per Night</h6>
<a href="#" class="btn btn-sm w-100 text-white custom-bg shadow-none mb-2">Book Now</a>
<a href="#" class="btn btn-sm w-100 btn-outline-dark shadow-none">More Details</a>
</div>
</div>
</div>
<div class="card mb-4 border-0 shadow">
<div class="row g-0 p-3 align-items-center">
<div class="col-md-5 mb-lg-0 mb-md-0 mb-3">
<img src="images/rooms/IMG_11892.png" class="img-fluid rounded">
</div>
<div class="col-md-5 px-lg-3 px-md-3 px-0">
<h5 class="mb-1">Simple Room Name</h5>
<div class="features mb-3">
<h6 class="mb-1">Features</h6>
<span class="badge rounded-pill text-bg-light text-wrap">2 Rooms</span>
<span class="badge rounded-pill text-bg-light text-wrap">2 Bathrooms</span>
<span class="badge rounded-pill text-bg-light text-wrap">2 Balcony</span>
<span class="badge rounded-pill text-bg-light text-wrap">3 Sofa</span>
</div>
<div class="facilities mb-3">
<h6 class="mb-1">Facilities</h6>
<span class="badge rounded-pill text-bg-light text-wrap">Wifi</span>
<span class="badge rounded-pill text-bg-light text-wrap">Television</span>
<span class="badge rounded-pill text-bg-light text-wrap">AC</span>
<span class="badge rounded-pill text-bg-light text-wrap">Heater</span>
</div>
<div class="guests">
<h6 class="mb-1">Guests</h6>
<span class="badge rounded-pill text-bg-light text-wrap">5 Adults</span>
<span class="badge rounded-pill text-bg-light text-wrap">4 Children</span>
</div>
</div>
<div class="col-md-2 mt-lg-0 mt-md-0 mt-4 text-center">
<h6 class="mb-3">₹200 Per Night</h6>
<a href="#" class="btn btn-sm w-100 text-white custom-bg shadow-none mb-2">Book Now</a>
<a href="#" class="btn btn-sm w-100 btn-outline-dark shadow-none">More Details</a>
</div>
</div>
</div>
</div>
</div>
</div>
<?php require('inc/footer.php'); ?>
</body>
</html>