-
Notifications
You must be signed in to change notification settings - Fork 15
/
table-booking.php
331 lines (284 loc) · 10.8 KB
/
table-booking.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<?php
session_start();
require_once "includes/connection.php";
// Fetch the admin data
$adminQuery = "SELECT `id`, `email`, `name`, `password`, `resettoken`, `resettokenexpire`, `enable_table_booking` FROM `admin` WHERE 1";
$adminResult = mysqli_query($conn, $adminQuery);
if ($adminResult) {
$adminData = mysqli_fetch_assoc($adminResult);
// Check if the enable_table_booking is 1
if ($adminData['enable_table_booking'] == 1) {
// Continue loading the page
} else {
// The table booking is disabled, show an alert and prevent further content rendering
echo "<script>
alert('Table booking page is unavailable now, Try later [disabled by admin]');
window.location.href = 'services.php'; // Redirect to your desired page
</script>";
exit; // Ensure that the script stops execution after redirecting
}
} else {
// Handle the error
echo "Error: " . mysqli_error($conn);
exit; // Ensure that the script stops execution in case of an error
}
// Continue with the rest of your page code
?>
<?php require "includes/header.php"; ?>
<style>
.clear {
clear: both;
}
.content {
margin-left: 20px;
}
.checkBox {
display: inline-block;
cursor: pointer;
width: 30px;
height: 30px;
border: 3px solid rgba(255, 255, 255, 0);
border-radius: 10px;
position: relative;
overflow: hidden;
box-shadow: 0px 0px 0px 2px black;
color: black; /* Set default text color */
}
.checkBox div {
width: 60px;
height: 60px;
background-color: rgba(0, 0, 0, 0.5); /* 50% opacity black */
top: -52px;
left: -52px;
position: absolute;
transform: rotateZ(45deg);
z-index: 100;
}
.checkBox input[type=checkbox]:checked + div {
left: -10px;
top: -10px;
}
.checkBox input[type=checkbox] {
position: absolute;
left: 50px;
visibility: hidden;
}
.transition {
transition: 300ms ease;
}
.checkBox input[type=checkbox]:checked + div + span {
color: white; /* Set text color to white when checked */
}
.box {
border: 5px solid #ccc; /* Border color and thickness */
padding: 10px; /* Padding inside the box */
border-radius: 10px; /* Rounded corners */
background-color: #f9f9f9; /* Background color */
max-width: 600px; /* Adjust the maximum width as per your preference */
margin: auto; /* Center the box */
color: grey;
}
.button {
background-image: linear-gradient(to right, #0d5215, green);
color: white;
max-width: 600px;
font-size: var(--fs-7);
text-transform: uppercase;
padding: 20px 30px;
text-align: center;
border-radius: 7px;
}
.hero-banner img {
max-width: 100%; /* Make images responsive */
height: auto; /* Maintain aspect ratio */
display: block; /* Remove extra space under the image */
margin: auto; /* Center the image */
margin-top: 13px; /* Add margin-top to move the image downward */
}
@media screen and (max-width: 1000px) {
.hero-banner img {
max-width: 100%;
margin-top: 10px;
}
}
</style>
<center><button class="button" style="width:100%; padding-top:8em"><a href="vip-booking.php" style="color:white"> Go To VIP Booking Section</a></button></center>
<section class="contact-section" id="home">
<br><br>
<center><u><h2 style="color:#0d5215">Normal Booking [First Floor]</h2></u></center><br>
<marquee style="color: #0d5215;">The selected seat will be available for you all the time - [Breakfast - 7 am to 11 am, Lunch 11 am to 4 pm, Dinner - 6 pm to 10 pm]</marquee>
<div class="contact-container">
<div class="contact-content">
<section>
<form action="table-booking-handler.php" method="post">
<center><h2 style="color:#0d5215">First Floor</h2></center><br>
<!-- Family Section -->
<div class="box">
<div class="content">
<center><h3>Break Fast</h3></center>
<hr>
<!-- Use dropdowns for seat selection -->
<div class="form-field">
<label for="family_seat">Select Seat accodring to the blueprint provided:</label>
<select id="family_seat" name='section[Breakfast][]' onchange="handleSelectChange(this)">
<option value="NONE">None</option>
<option value="B1">B1</option>
<option value="B2">B2</option>
<option value="B3">B3</option>
<option value="B4">B4</option>
<option value="B5">B5</option>
<option value="B6">B6</option>
<option value="B7">B7</option>
<option value="B8">B8</option>
</select>
</div>
</div>
</div>
<br>
<!-- Normal Section -->
<div class="box">
<div class="content">
<center><h3>Lunch</h3></center>
<hr>
<!-- Use dropdowns for seat selection -->
<div class="form-field">
<label for="normal_seat">Select Seat accodring to the blueprint provided::</label>
<select id="normal_seat" name='section[Lunch][]' onchange="handleSelectChange(this)">
<option value="NONE">None</option>
<option value="L1">L1</option>
<option value="L2">L2</option>
<option value="L3">L3</option>
<option value="L4">L4</option>
<option value="L5">L5</option>
<option value="L6">L6</option>
<option value="L7">L7</option>
<option value="L8">L8</option>
</select>
</div>
</div>
</div>
<br>
<!-- Dinner Section -->
<div class="box">
<div class="content">
<center><h3>Dinner</h3></center>
<hr>
<!-- Use dropdowns for seat selection -->
<div class="form-field">
<label for="normal_seat">Select Seat accodring to the blueprint provided::</label>
<select id="dinner_seat" name='section[Dinner][]' onchange="handleSelectChange(this)">
<option value="NONE">None</option>
<option value="D1">D1</option>
<option value="D2">D2</option>
<option value="D3">D3</option>
<option value="D4">D4</option>
<option value="D5">D5</option>
<option value="D6">D6</option>
<option value="D7">D7</option>
<option value="D8">D8</option>
</select>
</div>
</div>
</div>
<br>
<br>
<!-- Add a hidden input field for time -->
<input type="hidden" id="hidden_time" name="hidden_time">
<!-- Add date and time input fields with JavaScript to populate them automatically -->
<div class="box">
<div class="form-field">
<label for="date">Date:</label>
<input type="date" id="date" name="date" required>
</div>
<div class="form-field">
<label for="time">Time:</label>
<input type="text" id="time" name="hidden_time" placeholder="eg: 01:30 pm" pattern="^(0[1-9]|1[0-2]):[0-5][0-9] [apAP][mM] [tT][oO] (0[1-9]|1[0-2]):[0-5][0-9]$" title="Enter a valid time (hh:mm am/pm)" required oninput="updateHiddenTime()">
</div>
</div>
</section>
</div>
<figure class="hero-banner">
<center><h2 style="color:#0d5215">First Floor</h2></center><br>
<img width='600' src="assets/images/table-book/blue_print.png" alt='Blue print image [load error]'><br>
<center>
<input type="submit" class="button" value="Book Tables" style="float:left">
<button class="button" style="margin-right:0"><a href="payment-verification.php" style="color:white">Your Bookings</a></button>
</center>
</figure>
</div>
</form>
<!--Script to handle disabling of other select boxes-->
<script>
function updateHiddenTime() {
const visibleTimeInput = document.getElementById('time');
const hiddenTimeInput = document.getElementById('hidden_time');
const timeRegex = /^(0[1-9]|1[0-2]):[0-5][0-9] [apAP][mM] [tT][oO] (0[1-9]|1[0-2]):[0-5][0-9]$/;
if (visibleTimeInput.value.match(timeRegex)) {
hiddenTimeInput.value = visibleTimeInput.value;
} else {
// Handle invalid time format
hiddenTimeInput.value = ''; // Reset hidden time input
console.error('Invalid time format');
}
}
function handleSelectChange(selectedDropdown) {
const familyDropdown = document.getElementById('family_seat');
const normalDropdown = document.getElementById('normal_seat');
const dinnerDropdown = document.getElementById('dinner_seat');
const timeInput = document.getElementById('time');
const hiddenTimeInput = document.getElementById('hidden_time');
// Disable all dropdowns and the time field initially
familyDropdown.disabled = true;
normalDropdown.disabled = true;
dinnerDropdown.disabled = true;
timeInput.disabled = true;
// Enable the selected dropdown
selectedDropdown.disabled = false;
// If 'NONE' is selected, enable all dropdowns and the time field
if (selectedDropdown.value === 'NONE') {
familyDropdown.disabled = false;
normalDropdown.disabled = false;
dinnerDropdown.disabled = false;
timeInput.disabled = false;
}
switch (selectedDropdown.value) {
case 'B1':
case 'B2':
case 'B3':
case 'B4':
case 'B5':
case 'B6':
case 'B7':
case 'B8':
timeInput.value = '07:00 am to 11:00 am';
break;
case 'L1':
case 'L2':
case 'L3':
case 'L4':
case 'L5':
case 'L6':
case 'L7':
case 'L8':
timeInput.value = '11:00 am to 04:00 pm';
break;
case 'D1':
case 'D2':
case 'D3':
case 'D4':
case 'D5':
case 'D6':
case 'D7':
case 'D8':
timeInput.value = '06:00 pm to 10:00 pm';
break;
default:
timeInput.value = ''; // Reset the time field if 'NONE' or invalid option is selected
break;
}
// Update hidden time input
hiddenTimeInput.value = timeInput.value;
}
</script>
</section>
<?php require "includes/footer.php"; ?>