payment gateway for rpn cn
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 line
2.3KB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <meta name="description" content="">
  8. <meta name="author" content="">
  9. <title>选择支付通道</title>
  10. <!-- Bootstrap core CSS -->
  11. <link href="bootstrap/css/bootstrap.css" rel="stylesheet">
  12. <!-- Custom styles for this template -->
  13. <link href="style.css" rel="stylesheet">
  14. </head>
  15. <body>
  16. <div class="container" style="margin-top: 100px; min-height: 300px; text-align: center; max-width: 500px;">
  17. <form id="payment" name="payment" action="/choosePayment " method="POST">
  18. <input type="hidden" name="id" value="{{ .Id}}"/>
  19. <input type="hidden" name="sign" value="{{ .Sign}}"/>
  20. <div class="alert alert-primary" role="alert">请选择支付的通道</div>
  21. <div class="row">
  22. <div class="col-md-6">
  23. <h3>网银 P2P</h3>
  24. <label>
  25. <img src="assets/img/rpnp2p.jpg">
  26. <input id="rpnp2p" type="radio" name="rpnType" value="rpnp2p" checked/>
  27. </label>
  28. </div>
  29. <div class="col-md-6">
  30. <h3>支付宝 FAT</h3>
  31. <label>
  32. <img src="assets/img/rpnfat.jpeg">
  33. <input id="rpnfat" type="radio" name="rpnType" value="rpnfat"/>
  34. </label>
  35. </div>
  36. </div>
  37. <input type="submit" class="btn btn-primary btn-lg btn-block" style="margin-top: 50px;" value="下一步"/>
  38. </form>
  39. </div>
  40. <script type="text/javascript">
  41. //document.getElementById('payment').submit();
  42. </script>
  43. <!-- Bootstrap core JavaScript
  44. ================================================== -->
  45. <!-- Placed at the end of the document so the pages load faster -->
  46. <script src="assets/js/jquery.min.js"></script>
  47. <script src="assets/js/popper.js"></script>
  48. <script src="bootstrap/js/bootstrap.min.js"></script>
  49. </body>
  50. </html>