-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclintpay_success.php
More file actions
211 lines (148 loc) · 7.02 KB
/
clintpay_success.php
File metadata and controls
211 lines (148 loc) · 7.02 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<?php
session_start();
// var_dump($_REQUEST);
$InvoiceNumber = "REF123456";
$ItemName = "Fender Stratocaster";
$SalePrice = "5";
$success = "Payment Successful to Holding Account. Pending verification of delivery. Please remember your Reference Number" . " " . $InvoiceNumber;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Obaju e-commerce template">
<meta name="author" content="Ondrej Svestka | ondrejsvestka.cz">
<meta name="keywords" content="">
<title>
Online Auction System
</title>
<meta name="keywords" content="">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500,700,300,100' rel='stylesheet' type='text/css'>
<!-- styles -->
<link href="css/font-awesome.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/animate.min.css" rel="stylesheet">
<link href="css/owl.carousel.css" rel="stylesheet">
<link href="css/owl.theme.css" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<!-- theme stylesheet -->
<link href="css/style.default.css" rel="stylesheet" id="theme-stylesheet">
<!-- your stylesheet with modifications -->
<link href="css/custom.css" rel="stylesheet">
<script src="js/respond.min.js"></script>
<link rel="shortcut icon" href="favicon.png">
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
</head>
<body>
<?php include 'header.php';?>
<div id="all">
<div id="content">
<div class="container">
<div class="col-md-12">
<ul class="breadcrumb">
<li><a href="index.php">Home</a>
</li>
<li>Payment Summary</li>
</ul>
</div>
<div class="col-md-3">
<!-- *** PAGES MENU ***
_________________________________________________________ -->
<div class="panel panel-default sidebar-menu">
<div class="panel-heading">
<h3 class="panel-title">Quick Links</h3>
</div>
<div class="panel-body">
<ul class="nav nav-pills nav-stacked">
<li>
<a href="index.php">Home</a>
</li>
<li>
<a href="contact.php">Contact Us</a>
</li>
<li>
<a href="faq.php">FAQ</a>
</li>
</ul>
</div>
</div>
<!-- *** PAGES MENU END *** -->
<!-- <div class="banner">
<a href="#">
<img src="img/banner.jpg" alt="sales 2014" class="img-responsive">
</a>
</div> -->
</div>
<div class="col-md-9">
<div class="box" id="contact">
<h1>Paynow Payment Summary</h1>
<!-- <p class="lead">Please leave you feedback. We will be happy to respond! </p> -->
<hr>
<?php
if(isset($_GET['err'])) {
echo '
<div class="alert alert-info">
<strong>Sorry!</strong> You need to <a href="register.php">log in</a> to add a listing.
</div>
';
}
?>
<div class="panel-group" id="accordion">
<form class="form-horizontal" method="POST">
<div class="panel panel-primary">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">
1. Payment Summary.
</a>
</h4>
</div>
<!-- <div id="collapseTwo" class="panel-collapse collapse"> -->
<div id="collapseTwo" class="panel">
<div class="alert alert-success"> <p class="text-center"> <?php if (isset($success)) { echo $success; } ?> </div> </div>
<div class="panel-body">
<label class="control-label col-sm-3" >REF Number: <?php echo $InvoiceNumber; ?></label>
<label class="control-label col-sm-5" >Item Paid: <?php echo $ItemName; ?></label>
<label class="control-label col-sm-3" for="comment">Paid Amount: <?php echo $SalePrice; ?></label>
</div>
</div>
</div>
<!-- /.panel -->
<br>
<!-- /.panel-group -->
</form>
</div>
</div>
<!-- /.col-md-9 -->
</div>
<!-- /.container -->
</div>
<!-- *** FOOTER ***
_________________________________________________________ -->
<?php include 'footer.php';?>
<!-- /#all -->
<!-- *** SCRIPTS TO INCLUDE ***
_________________________________________________________ -->
<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.cookie.js"></script>
<script src="js/waypoints.min.js"></script>
<script src="js/modernizr.js"></script>
<script src="js/bootstrap-hover-dropdown.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/front.js"></script>
<script src="js/bootstrap.js"></script>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script>
$(function() {
$( "#datepicker" ).datepicker({
dateFormat: "yy-mm-dd"
});
});
</script>
</body>
</html>