|
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <meta name="description" content="">
- <meta name="author" content="">
- <title>选择支付通道</title>
- <!-- Bootstrap core CSS -->
- <link href="bootstrap/css/bootstrap.css" rel="stylesheet">
- <!-- Custom styles for this template -->
- <link href="style.css" rel="stylesheet">
- </head>
- <body>
- <div class="container" style="margin-top: 100px; min-height: 300px; text-align: center; max-width: 500px;">
- <form id="payment" name="payment" action="/choosePayment " method="POST">
- <input type="hidden" name="id" value="{{ .Id}}"/>
- <input type="hidden" name="sign" value="{{ .Sign}}"/>
- <div class="alert alert-primary" role="alert">请选择支付的通道</div>
- <div class="row">
- <div class="col-md-6">
- <h3>网银 P2P</h3>
- <label>
- <img src="assets/img/rpnp2p.jpg">
- <input id="rpnp2p" type="radio" name="rpnType" value="rpnp2p" checked/>
- </label>
- </div>
- <div class="col-md-6">
- <h3>支付宝 FAT</h3>
- <label>
- <img src="assets/img/rpnfat.jpeg">
- <input id="rpnfat" type="radio" name="rpnType" value="rpnfat"/>
- </label>
- </div>
- </div>
- <input type="submit" class="btn btn-primary btn-lg btn-block" style="margin-top: 50px;" value="下一步"/>
- </form>
- </div>
- <!-- Bootstrap core JavaScript
- ================================================== -->
- <!-- Placed at the end of the document so the pages load faster -->
- <script src="assets/js/jquery.min.js"></script>
- <script src="assets/js/popper.js"></script>
- <script src="bootstrap/js/bootstrap.min.js"></script>
- </body>
- </html>
|