Created
May 11, 2016 18:18
-
-
Save vinaynb/cf9d3adc7573c880867331723c2c5c22 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Document</title> | |
| <!-- <meta http-equiv="refresh" content="5; URL='paymentSuccess.html'" /> --> | |
| </head> | |
| <body> | |
| <h1></h1> | |
| <form action="https://secure.payu.in/_payment" method="post" id="myForm" name="payuForm"> | |
| <input type="hidden" name="key" value="xxxxxx" /> | |
| <input type="hidden" id="productInfo" name="productinfo" value="" /> | |
| <input type="hidden" name="hash" value="" id="hash"/> | |
| <!--Compulsary params --> | |
| <input type="hidden" id="service_provider" name="service_provider" value="payu_paisa" /> | |
| <input type="hidden" id="furl" name="furl" value="some application server endpoint which processes payment failure" /> | |
| <input type="hidden" name="surl" value="some application server endpoint which processes payment success" id="surl"/> | |
| <input type="hidden" name="phone" value="" id="phone"/> | |
| <input type="hidden" name="email" value="" id="email"/> | |
| <input type="hidden" name="firstname" value="" id="firstname"/> | |
| <input type="hidden" name="amount" value="" id="amount"/> | |
| <input type="hidden" name="txnid" value="" id="txnid"/> | |
| <!--Optional Params --> | |
| <input type="hidden" name="lastname" value="" /> | |
| <input type="hidden" name="curl" value="some application server endpoint which processes payment cancellation" /> | |
| <input type="hidden" name="address2" value="" /> | |
| <input type="hidden" name="address1" value="" /> | |
| <input type="hidden" name="city" value="" /> | |
| <input type="hidden" name="state" value="" /> | |
| <input type="hidden" name="country" value="" /> | |
| <input type="hidden" name="zipcode" value="" /> | |
| <input type="hidden" name="udf1" value="" /> | |
| <input type="hidden" name="udf2" value="" /> | |
| <input type="hidden" name="udf3" value="" /> | |
| <input type="hidden" name="udf4" value="" /> | |
| <input type="hidden" name="udf5" value="" /> | |
| <input type="hidden" name="pg" value="" /> | |
| <input type="hidden" type="submit" value="Submit" /> | |
| </form> | |
| <script type="text/javascript" src="resources/js/sha.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment