This repository has been archived by the owner on Jan 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
30 lines (30 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>PayU Integration SDK</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div class="col-md-8 col-md-offset-2" style="margin-top: 25%">
<form method="post" action="http://localhost/PayU-Integration-SDK/public/payments">
<input name="merchantId" type="hidden" value="508029">
<input name="accountId" type="hidden" value="512321">
<input name="description" type="hidden" value="Test PAYU">
<input name="referenceCode" type="hidden" value="TestPayU">
<input name="amount" type="hidden" value="20000">
<input name="tax" type="hidden" value="3193">
<input name="taxReturnBase" type="hidden" value="16806">
<input name="currency" type="hidden" value="COP">
<input name="signature" type="hidden" value="7ee7cf808ce6a39b17481c54f2c57acc">
<input name="test" type="hidden" value="1">
<input name="buyerEmail" type="hidden" value="[email protected]">
<input name="responseUrl" type="hidden" value="http://www.test.com/response">
<input name="confirmationUrl" type="hidden" value="http://www.test.com/confirmation">
<button class="btn btn-primary btn-block" type="submit">Submit</button>
</form>
</div>
</body>
</html>