-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder-complete.php
More file actions
60 lines (53 loc) · 1.4 KB
/
Copy pathorder-complete.php
File metadata and controls
60 lines (53 loc) · 1.4 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
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE HTML>
<html>
<head>
<title>Footwear - Free Bootstrap 4 Template by Colorlib</title>
<?php
include("head.php");
include("navbar.php");
?>
</head>
<body>
<div class="colorlib-loader"></div>
<div id="page">
<?php
include("breadcrumbs.php");
?>
<div class="colorlib-product">
<div class="container">
<div class="row row-pb-lg">
<div class="col-sm-10 offset-md-1">
<div class="process-wrap">
<div class="process text-center active">
<p><span>01</span></p>
<h3>Shopping Cart</h3>
</div>
<div class="process text-center active">
<p><span>02</span></p>
<h3>Checkout</h3>
</div>
<div class="process text-center active">
<p><span>03</span></p>
<h3>Order Complete</h3>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-10 offset-sm-1 text-center">
<p class="icon-addcart"><span><i class="icon-check"></i></span></p>
<h2 class="mb-4">Thank you for purchasing, Your order is complete</h2>
<p>
<a href="index.html"class="btn btn-primary btn-outline-primary">Home</a>
<a href="shop.html"class="btn btn-primary btn-outline-primary"><i class="icon-shopping-cart"></i> Continue Shopping</a>
</p>
</div>
</div>
</div>
</div>
<?php
include("footer.php");
include("footer_links.php");
?>
</body>
</html>