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
|
<!DOCTYPE html> <html lang="en">
<head> <title>FLORA HOUSE</title> <!-- css --> <?php include 'inc/headlinks.php';?> <meta name="keywords" content="FLORA HOUSE"> <meta name="description" content="Green is More Than a Colour"> <!-- js --> <?php include 'inc/link-js.php';?> </head>
<body>
<!-- header -->
<div class="subPageMenu">
<?php include 'inc/navbar.php';?> </div> <!-- end of header--> <section class="garyBg mainWarp text-center"> <h1 class="greenFont Roman biggerester">Thank you!</br> We have got your order. We will be contacting you soon with delivery arrangement. </h1>
<button class="yellowBtn noBorder" type="button" onclick="location.href='product_list.php';">Back to shop</button>
</section>
<?php include 'inc/subscribe.php';?>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer.php';?>
</body>
</html>
|