-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbooking.php
36 lines (27 loc) · 1 KB
/
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
<?php
require("classes/components.php");
Components::pageHeader("Book Appointment", ["style"], ["mobile-nav"]);
?>
<!-- Include jQuery -->
<script src="https:///code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Include jQuery UI styles and scripts -->
<link rel="stylesheet" href="https:///code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https:///code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<div id="main-content">
<div id="calendar">
<!-- Calendar component goes here -->
</div>
<div id="booking-form">
<!-- Booking form component goes here -->
<form method="POST" action="booking.php">
<label for="bookingDate">Select Date:</label>
<input type="text" id="bookingDate" name="bookingDate">
<label for="bookingTime">Select Time:</label>
<input type="text" id="bookingTime" name="bookingTime">
<input type="submit" value="Book Now">
</form>
</div>
</div>
<?php
Components::pageFooter();
?>