-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuccess.php
34 lines (28 loc) · 1.08 KB
/
success.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Welcome |E-COMMERCE</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="css_ec.css" />
<link href="css/style.css" rel="stylesheet">
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<?php
include 'nav.php' ;
?>
<div class="container-fluid" id="content" style="margin-top:200px;">
<div class="col-md-12">
<div class="jumbotron">
<h3 align="center">Your order is confirmed. Thank you for shopping with us.</h3><hr>
<p align="center">Click <a href="products.php">here</a> to purchase any other item.</p>
</div>
</div>
</div>
<?php
include 'footer.php' ;
?>
</body>
</html>