-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththankyou.php
30 lines (26 loc) · 897 Bytes
/
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
<?php
include 'custdashboardh.php';
?>
<div class="bg-light py-3">
<div class="container">
<div class="row">
<div class="col-md-12 mb-0"><a href="index.php">Home</a> <span class="mx-2 mb-0">/</span> <strong
class="text-black">Thank You</strong></div>
</div>
</div>
</div>
<div class="site-section">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<span class="icon-check_circle display-3 text-success"></span>
<h2 class="display-3 text-black">Thank you!</h2>
<p class="lead mb-5">You order was successfuly completed.</p>
<p><a href="shopnew.php" class="btn btn-md height-auto px-4 py-3 btn-primary">Back to store</a></p>
</div>
</div>
</div>
</div>
<?php
include 'custdashboard.php';
?>