-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththank_you.php
More file actions
46 lines (41 loc) · 1.33 KB
/
Copy paththank_you.php
File metadata and controls
46 lines (41 loc) · 1.33 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Wedding Planner</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css"
href="https://cdn.materialdesignicons.com/2.1.19/css/materialdesignicons.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<style>
.alert {
font-size: 12px;
}
.error {
background-color: #F2DEDE;
}
.alert.alert-danger.text-center {
font-size: 16px;
}
.mdi.mdi-alert-circle.mr-3 {
font-size: 16px;
}
</style>
</head>
<body>
<?php include 'include/nav.php'; ?>
<div class="container">
<div class="row">
<div class="col-md-12 mt-5">
<h5 class="jumbotron text-center bg-light">THANK YOU FOR BOOKING WITH US. WE ASSURE YOU WE CAN MAKE YOUR WEDDING SUCCESSFUL.</h5>
</div>
</div>
</div>
<script src="js/jquery-3.2.1.slim.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>