-
Notifications
You must be signed in to change notification settings - Fork 0
/
room.html
108 lines (95 loc) · 4.64 KB
/
room.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Emaar Properties</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="./style/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Reem+Kufi+Ink&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" /></head>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<body>
<header class="otherpage">
<nav>
<div class="logo">
<a href="./index.html"><img src="asset/logo/white.png" alt="Dubai Real Estate"></a>
</div>
<div class="headerButton">
<a href="./login.php" class="btn-primary white">Login</a>
</div>
</nav>
</header>
<div class="box">
<div class="hero">
<h1 id="roomName"></h1>
</div>
<div class="box content">
<div class="containerRoom">
<div class="containerRoomItem">
<img id="roomImage" src="" alt="">
</div>
<div class="containerRoomItem">
<div class="boxService">
<h3>Room Details</h3>
<p id="roomDescription"></p>
<h3>Room Service</h3>
<ul class="containerService">
<li class="containerServiceItem"><i class="fa-solid fa-wifi"></i> Wifi Fast</li>
<li class="containerServiceItem"><i class="fa-solid fa-tv"></i> Smart TV</li>
<li class="containerServiceItem"><i class="fa-solid fa-mug-saucer"></i> Luxury Breakfast</li>
<li class="containerServiceItem"><i class="fa-solid fa-utensils"></i> Restaurant</li>
<li class="containerServiceItem"><i class="fa-solid fa-person-swimming"></i> Swimming Pool</li>
<li class="containerServiceItem"><i class="fa-solid fa-square-parking"></i> Free Parking</li>
<li class="containerServiceItem"><i class="fa-solid fa-dumbbell"></i> Fitness</li>
<li class="containerServiceItem"><i class="fa-solid fa-bell-concierge"></i> Concierge h24</li>
<li class="containerServiceItem"><i class="fa-solid fa-spa"></i> Spa Service</li>
<li class="containerServiceItem"><i class="fa-solid fa-vault"></i> Safe Vault</li>
</ul>
</div>
<a href="#checkInInput" class="btn-primary green">Choose your room</a>
</div>
</div>
</div>
<div class="box content">
<h2>Room Price</h2>
<div class="date-selection">
<div class="check-in">
<label for="check-in-date">Check-in:</label>
<input type="date" id="checkInInput" name="check-in-date" value="2023-05-05">
</div>
<div class="check-out">
<label for="check-out-date">Check-out:</label>
<input type="date" id="checkOutInput" name="check-out-date" value="2023-05-06">
</div>
<div class="check-out">
<label for="search-btn">-</label>
<button class="btn-primary white" id="search_room">Search</button>
</div>
</div>
<table>
<thead>
<tr>
<th>Room Type</th>
<th>Service Type</th>
<th>Price per Night</th>
<th>Status</th>
<th>Reservation</th>
</tr>
</thead>
<tbody id="roomPriceTable">
</tbody>
</table>
</div>
</div>
<footer>
<div class="container">
<p>© 2023 Dubai Emaar Properties Hotel. All rights reserved.</p>
</div>
</footer>
<script src='./js/room.js' defer></script>
</body>
</html>