-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreply_booking.php
56 lines (53 loc) · 2.25 KB
/
reply_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
<!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">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<link rel="stylesheet" href="css/footer.css">
<title>Booking | WORKVIBES Coworking Space</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
<link rel = "stylesheet" type = "text/css" href = "css/bootstrap.css " />
</head>
<body>
<!-- header section starts -->
<?php include 'components/user_header.php'; ?>
<!-- header section ends -->
<div class="heading">
<h3>Booking Space</h3>
<p><a href="home.php">home</a> <span> / SEND Booking</span></p>
</div>
<div style = "margin-left:0;" class = "container">
<div class = "panel panel-default">
<div class = "panel-body">
<strong><h3>MAKE A RESERVATION</h3></strong>
<br />
<div class = "col-md-4"></div>
<div class = "well col-md-4">
<center><h3>Please visit our Hotel for verification</h3></center>
<br />
<center><h4>THANK YOU!</h4></center>
<br />
<center><a href = "reservation.php" class = "btn btn-success"><i class = "glphyicon glyphicon-check"></i> Back to reservation</a></center>
</div>
<div class = "col-md-4"></div>
</div>
</div>
</div>
<!-- footer section starts -->
<?php include 'components/footer.php'; ?>
<!-- footer section ends -->
<!-- custom js file link -->
<script src="js/script.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/timepicker/1.3.5/jquery.timepicker.min.js"></script>
</div>
</body>
</html>