-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuccess_paid.php
38 lines (30 loc) · 1.47 KB
/
success_paid.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
35
36
37
38
<?php error_reporting(0);?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="font-awesome/css/font-awesome.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<!--<link href="css/animate.css" rel="stylesheet">-->
<link type = 'text/css' href="css/style.css?v=11" rel="stylesheet">
<script src="js/jquery-2.1.1.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<body id="landing_page">
<div class="col-md-9 col-md-offset-1">
<img src="img/bg1.jpg" alt="Smiley face" height="500px" width="100%">
</div>
<div class="col-md-6 col-md-offset-3"></br></br></br></br>
<p style="font-size:15px" id='success_paid'></p></br></br>
<?php if($_GET["amt"]){?>
<em id="new_green_header"> Your Order: <?php echo $_GET["amt"]; ?></em><hr style='border-top: 2px solid #990000;'></hr></br></br>
<em id="new_green_header"> Payment Status: <?php echo $_GET["st"]; ?></em><hr style='border-top: 2px solid #990000;'></hr></br></br>
<?php }?> </div>
<script type="text/javascript">
$("#success_paid").load("admin/templates/success_paid.html");
</script>
</body>
</html>