-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookRoom.php
171 lines (111 loc) · 5.43 KB
/
bookRoom.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
<?php
require_once "../hotel/db/db.php";
date_default_timezone_set('Europe/Rome');
$reservation = getroomsReserved();
//rooms from hotel
$hotelRooms = getRooms();
//main hotel
$mainHotel = getHotel();
//get customers
$customers = getUser();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- bootstrap link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- bootstrap link -->
<link rel="stylesheet" href="./css/styles.css">
<link rel="icon" href="./images/company.jpg" />
<!-- link cdn fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Room Booking</title>
</head>
<body>
<!-- header -->
<header>
<?php
include('./header/header.php');
?>
</header>
<!-- header -->
<!-- main -->
<main>
<div class="container">
<h1 class="text-center text-bg-light ">Book a Room</h1>
<div class="headerrip">
<?php
if ($mainHotel->num_rows > 0) {
// output data of each row
while ($row = $mainHotel->fetch_assoc()) {
?>
<div class="words">
<h2><?= $row["hotel_name"] ?></h2>
</div>
<?php
}
} else {
echo "0 results";
}
?>
</div>
<div class="container">
<div class="col-md-12 text-center text-primary mt-5">
<h3>Rooms Available in Hotel Bezos</h3>
</div>
<!-- section form -->
<form method="post" action="insert.php" style="position: relative; top:220px; font-size: 20px;">
<div class="col-md-4 " >
<label for="" class="form-label">ROOM ID</label>
<input type="text" class="form-control" id="roomId" name="roomId">
</div>
<div class="col-md-4" >
<label for="" class="form-label">RESERVATION ID</label>
<input type="text" class="form-control" id="reservationId" name="reservationId">
</div>
<div class="col-md-4" >
<label for="" class="form-label">USER ID</label>
<input type="text" class="form-control" id="users_id" name="users_id">
</div>
<div class="col-md-4">
<label for="" class="form-label">Check-In</label>
<input type="datetime-local" class="form-control" id="start_date" name="start_date">
</div>
<div class="col-md-4">
<label for="" class="form-label">Check-Out</label>
<input type="datetime-local" class="form-control" id="end_date" name="end_date">
</div>
<button type="submit" class="btn btn-primary mt-2">Submit</button>
<div style="position: relative; bottom:380px; " class="col-md-6 offset-md-6">
<img style="border-radius: 20px;" src="https://media.istockphoto.com/photos/illustration-of-business-team-informal-greeting-happy-working-people-picture-id1314814370?b=1&k=20&m=1314814370&s=170667a&w=0&h=8tZlw-SXDFxXKZN7iTYjPTp_bLpEjq0PO3DzMwr5kIo=" alt="">
</div>
</form>
</div>
</div>
<div class="container">
<div id="marco">
<div id="cielo"></div>
<div id="luna"></div>
<div id="gato"></div>
<div id="muro"></div>
<div id="edificios"></div>
</div>
</div>
</main>
<!-- main -->
<footer>
<?php
include('./footer/footer.php');
?>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>