| 6060 |
rajveer |
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
2 |
<html>
|
|
|
3 |
<head>
|
|
|
4 |
<title>${domain.name}: Redirecting to PayU Payment Page</title>
|
|
|
5 |
<script language="javascript" type="text/javascript" src="/js/ga-invoker.js"></script>
|
|
|
6 |
</head>
|
|
|
7 |
<body>
|
|
|
8 |
<div style="text-align:center; margin-top:200px;">Please wait while we redirect you to the Payment Gateway.</div>
|
|
|
9 |
<div align="center" class="img">
|
|
|
10 |
<img title="loading" alt="loading" src="/images/loading.gif">
|
|
|
11 |
</div>
|
| 13372 |
amit.gupta |
12 |
#set($ppp=$action.getPpp())
|
| 6060 |
rajveer |
13 |
<div style="display:none">
|
| 13375 |
amit.gupta |
14 |
<form method="post" action="$ppp.getPostActionUrl()" name="frmTransaction" id="frmTransaction" onSubmit="return validate()">
|
| 6060 |
rajveer |
15 |
<!-- Account Id -->
|
|
|
16 |
<input name="key" type="hidden" value="$action.getAccountId()" />
|
|
|
17 |
|
|
|
18 |
|
|
|
19 |
<!-- Transaction Details -->
|
| 13372 |
amit.gupta |
20 |
<input name="txnid" type="hidden" value="$ppp.getTxnid()" />
|
| 6060 |
rajveer |
21 |
|
| 13372 |
amit.gupta |
22 |
<input name="amount" type="hidden" value="$ppp.getAmount()" />
|
| 6060 |
rajveer |
23 |
|
| 13372 |
amit.gupta |
24 |
<input name="productinfo" type="hidden" value="$ppp.getProductinfo()" />
|
| 6060 |
rajveer |
25 |
|
| 13372 |
amit.gupta |
26 |
<input name="firstname" type="hidden" value="$ppp.getFirstname()" /></td>
|
| 6060 |
rajveer |
27 |
|
| 13372 |
amit.gupta |
28 |
<input name="address1" type="hidden" value="$ppp.getAddress1()" />
|
| 6060 |
rajveer |
29 |
|
| 13372 |
amit.gupta |
30 |
<input name="address2" type="hidden" value="$ppp.getAddress2()" />
|
| 6060 |
rajveer |
31 |
|
| 13372 |
amit.gupta |
32 |
<input name="city" type="hidden" value="$ppp.getCity()" />
|
| 6060 |
rajveer |
33 |
|
| 13372 |
amit.gupta |
34 |
<input name="state" type="hidden" value="$ppp.getState()" />
|
| 6060 |
rajveer |
35 |
|
|
|
36 |
<input name="country" type="hidden" value="India"/>
|
|
|
37 |
|
| 13372 |
amit.gupta |
38 |
<input name="zipcode" type="hidden" value="$ppp.getZipcode()" />
|
| 6060 |
rajveer |
39 |
|
| 13372 |
amit.gupta |
40 |
<input name="email" type="hidden" value="$ppp.getEmail()" />
|
| 6060 |
rajveer |
41 |
|
| 13372 |
amit.gupta |
42 |
<input name="phone" type="hidden" value="$ppp.getPhone()" />
|
| 6060 |
rajveer |
43 |
|
| 13372 |
amit.gupta |
44 |
<input name="surl" type="hidden" value="$ppp.getSurl()" />
|
| 6060 |
rajveer |
45 |
|
| 13372 |
amit.gupta |
46 |
<input name="furl" type="hidden" value="$ppp.getFurl()" />
|
| 6060 |
rajveer |
47 |
|
| 13372 |
amit.gupta |
48 |
<input name="curl" type="hidden" value="$ppp.getCurl()" />
|
| 6060 |
rajveer |
49 |
|
| 13372 |
amit.gupta |
50 |
<input name="pg" type="hidden" value="$ppp.getPg()"/>
|
|
|
51 |
|
|
|
52 |
<input name="bankcode" type="hidden" value="$ppp.getBankcode()"/>
|
| 6060 |
rajveer |
53 |
|
| 13372 |
amit.gupta |
54 |
<input name="hash" type="hidden" value="$ppp.getHash()" />
|
| 6060 |
rajveer |
55 |
|
|
|
56 |
<input name="submitted" value="Submit" type="submit" />
|
|
|
57 |
<input value="Reset" type="reset" />
|
|
|
58 |
</form>
|
|
|
59 |
</div>
|
|
|
60 |
|
|
|
61 |
#include ( "templates/commonjsfiles.vm" )
|
|
|
62 |
<script type="text/javascript">
|
|
|
63 |
$(function() {
|
|
|
64 |
$('form[name="frmTransaction"]').submit();
|
|
|
65 |
});
|
|
|
66 |
</script>
|
|
|
67 |
</body>
|
|
|
68 |
</html>
|