generated from github/welcome-to-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1.71 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>my-first-website</title>
<LINK href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<img src="https://octodex.github.com/images/daftpunktocat-thomas.gif" id="octocat" alt="octocat-gif" />
<!-- Change this code here by copy and pasting your template on line 15 -->
<p>Payumoney payment example</p>
<a href="javascript:void(0)" class="col button button-raised color-red button-fill" onclick="payWithPayUMoney()">Pay Online</a>
<form action="https://secure.payu.in/" method="post" id="myForm" name="payuForm">
<input type="hidden" name="key" id="key" value="<KEY>" />
<input type="hidden" name="salt" id="salt" value="<SALT>" />
<input type="hidden" id="productInfo" name="productinfo" value="<PRODUCT INFO>" />
<input type="hidden" name="hash" value="<HASH KEY GENERATED FROM SERVER>" id="hash"/>
<input type="hidden" id="service_provider" name="service_provider" value="payu_paisa"/>
<input type="hidden" id="furl" name="furl" value="<FAILURE URL>" />
<input type="hidden" name="surl" value="<SUCCESS URL>" id="surl"/>
<input type="hidden" name="phone" value="<CONTACTNO>" id="phone"/>
<input type="hidden" name="email" value="<EMAIL ID>" id="email"/>
<input type="hidden" name="firstname" value="<CUSTOMER NAME>" id="firstname"/>
<input type="hidden" name="amount" value="<AMOUNT>" id="amount"/>
<input type="hidden" name="address1" value="<ADDRESS>" id="address1"/>
<input type="hidden" name="txnid" value="<TRANSECTION ID>" id="txnid"/>
</form>
<script type="text/javascript" src="cordova.js"></script>
</body>
</html>