-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBookingthanks.php
65 lines (47 loc) · 1.57 KB
/
Bookingthanks.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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<?php require ('inc/head.php'); ?>
<body>
<?php require ('inc/preloader_area.php');
require ('inc/top_Bar.php');
?>
<?php
if(isset($_SESSION['userId'])){
$userid=$_SESSION['userId'];
require ('inc/LoginHeader.php');
}else{
require ('inc/Header.php');
}
?>
<!-- ========== Breadcumb start============= -->
<!-- ========== Room & Suits start============= -->
<div class="error-page pt-120 mb-120">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="error-wrrap">
<div class="error-content text-center">
<div class="contents">
<p style="font-size:40px">We’re so happy to help you make your</p>
<p style="font-size:40px">reservations.</p>
<p style="font-size:40px">please come back soon!</p>
</div>
<a class="btn--primary" href="index.php"><i class="bx bx-home"></i>Back To Home</a>
<br/>
<br/><br/>
</div>
<div class="error-img">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ========== Room & Suits end============= -->
<?php require ('inc/footer.php');
require('inc/js_file_link.php'); ?>
</body>
</html>