国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

78 行
3.2KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title>订单确认-会员中心-<?php echo $cfg_webname;?></title>
  7. <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="/static/web/css/style.css">
  10. </head>
  11. <body>
  12. <?php obtaintheme('top.htm');?>
  13. <main class="container py-3">
  14. <div class="row">
  15. <?php include(DEDEMEMBER."/templets/menu.htm");?>
  16. <div class="col-md-9">
  17. <div class="pannel-main-container shadow-sm rounded">
  18. <nav aria-label="breadcrumb">
  19. <ol class="breadcrumb">
  20. <li class="breadcrumb-item"><a href="/">首页</a></li>
  21. <li class="breadcrumb-item"><a href="<?php echo $cfg_memberurl;?>/">会员中心</a></li>
  22. <li class="breadcrumb-item"><a href="<?php echo $cfg_memberurl;?>/buy.php">积分钱包</a></li>
  23. <li class="breadcrumb-item">确认订单</li></li>
  24. </ol>
  25. </nav>
  26. <div class="alert alert-success">您申请购买的产品如下,确认无误后请点击购买并支付按钮,进行网上支付,如果支付失败,请与管理员联系其它支付方式</div>
  27. <h3 class="py-3">订单确认</h3>
  28. <form name="E_FORM" action="<?php echo $cfg_memberurl;?>/buy_action.php" method="post">
  29. <input type="hidden" name="pd_encode" value="<?php echo $pr_encode;?>">
  30. <input type="hidden" name="pd_verify" value="<?php echo $pr_verify;?>">
  31. <input type="hidden" name="aid" value="<?php echo $buyid;?>">
  32. <table class="table">
  33. <tbody>
  34. <tr>
  35. <td width="15%" align="right">订单编号</td>
  36. <td><?php echo $buyid?></td>
  37. </tr>
  38. <tr>
  39. <td align="right">产品类型</td>
  40. <td><?php echo $ptype?></td>
  41. </tr>
  42. <tr>
  43. <td align="right">产品名称</td>
  44. <td><?php echo $pname?></td>
  45. </tr>
  46. <tr>
  47. <td align="right"><span class="td1">产品价格:</span></td>
  48. <td><?php echo $price;?>元</td>
  49. </tr>
  50. <tr>
  51. <td align="right"><span class="td1">支付方式:</span></td>
  52. <td>
  53. {dede:array.payment_list}
  54. <div class="form-check mb-2">
  55. <input class="form-check-input" id="iptPayment{dede:value.id/}" type="radio" name="paytype" value="{dede:value.id/}">
  56. <label class="form-check-label" for="iptPayment{dede:value.id/}">
  57. {dede:value.name/}<?php echo intval($value['id'])=== 4? '(余额:'.$cfg_ml->M_UserMoney.')' : '' ;?>
  58. </label>
  59. </div>
  60. {/dede:array}
  61. </td>
  62. </tr>
  63. <tr>
  64. <td colspan="2" align="center">
  65. <button type="submit" class="btn btn-success btn-sm">购买并支付</button>
  66. <button type="button" class="btn btn-secondary btn-sm" onclick="location='buy.php'">返回</button>
  67. </td>
  68. </tr>
  69. </tbody>
  70. </table>
  71. </form>
  72. </div>
  73. </div>
  74. </div>
  75. </main>
  76. <?php obtaintheme('foot.htm');?>
  77. </body>
  78. </html>