-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththankyou.php
48 lines (43 loc) · 1.89 KB
/
thankyou.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
<?php
include("includes/navbar.php");
include("admin/config/dbcon.php");
?>
<!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">
<title>Thank You!!!</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet" />
</head>
<body>
<div class="d-flex justify-content-center align-items-center">
<div class="col-md-4">
<div class="border border-3 border-success"></div>
<div class="card bg-white shadow p-5">
<div class="mb-4 text-center">
<svg xmlns="http://www.w3.org/2000/svg" class="text-success" width="75" height="75"
fill="currentColor" class="bi bi-check-circle" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" />
<path
d="M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z" />
</svg>
</div>
<div class="text-center">
<h1>Thank You !</h1>
<p>Your Booking is Completed..We will Contact You Soon </p>
<!-- <button class="btn btn-outline-success">Back Home</button> -->
<!-- <button class="btn btn-success">Back Home</button> -->
</div>
</div>
</div>
</div>
</body>
<?php
include("includes/footer.php");
include("includes/scripts.php");
?>
</html>
<!-- This templates was made by Colorlib (https://colorlib.com) -->