国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

107 lignes
4.1KB

  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. <div class="alert alert-success"><?php echo $cfg_ml->GetSta();?></div>
  19. <?php if ($cfg_money_scores > 0) {?>
  20. <?php $canCav = floor($cfg_ml->fields['scores'] / $cfg_money_scores);?>
  21. <div class="change pb-3">
  22. <h3 class="mb-3">积分换金币</h3>
  23. <p><?php echo "兑换价格{$cfg_money_scores}积分/个,您目前可兑换金币{$canCav}";?></p>
  24. <form name="formrank" action="<?php echo $cfg_memberurl;?>/index_do.php?dopost=money2s&fmdo=user" method="post">
  25. <table class="table">
  26. <tbody>
  27. <tr>
  28. <td width="30%">兑换数量</td>
  29. <td><input type="text" name="money" id="money" class="form-control w-25" value="<?php echo $canCav;?>"></td>
  30. </tr>
  31. <tr>
  32. <td></td>
  33. <td><button type="submit" class="btn btn-success btn-sm">兑换</button></td>
  34. </tr>
  35. </tbody>
  36. </table>
  37. </form>
  38. </div>
  39. <?php }?>
  40. <div class="pay pb-3">
  41. <h3 class="mb-3">积分充值</h3>
  42. <form name="formrank" action="<?php echo $cfg_memberurl;?>/check_card.php" method="post">
  43. <table class="table">
  44. <tbody>
  45. <tr>
  46. <td width="30%">积分卡号</td>
  47. <td><input type="text" name="cardid" id="cardid" class="form-control w-25"></td>
  48. </tr>
  49. <tr>
  50. <td>验证码</td>
  51. <td>
  52. <input type="text" name="vdcode" id="vdcode" class="form-control text-uppercase d-inline-block w-25">
  53. <img src="<?php echo $cfg_phpurl;?>/vdimgck.php" onclick="this.src='<?php echo $cfg_phpurl;?>/vdimgck.php?'+new Date().getTime()+Math.round(Math.random() * 10000)" title="验证码">
  54. </td>
  55. </tr>
  56. <tr>
  57. <td></td>
  58. <td><button type="submit" class="btn btn-success btn-sm">充值</button></td>
  59. </tr>
  60. </tbody>
  61. </table>
  62. </form>
  63. </div>
  64. <div class="buy pb-3">
  65. <h3 class="mb-3">购买金币</h3>
  66. <form name="f1" action="<?php echo $cfg_memberurl;?>/buy_action.php" method="post">
  67. <input type="hidden" name="product" value="card">
  68. <table class="table">
  69. <tr>
  70. <th width="8%">选择</th>
  71. <th width="30%">产品名称</th>
  72. <th width="30%">金币数量(个)</th>
  73. <th>价格(元)</th>
  74. </tr>
  75. <tbody>
  76. <?php echo $moneycards;?>
  77. </tbody>
  78. </table>
  79. <div class="text-center"><button type="submit" class="btn btn-success btn-sm">购买</button></div>
  80. </form>
  81. </div>
  82. <div class="upgrade">
  83. <h3 class="mb-3">账号升级</h3>
  84. <form name="f1" action="<?php echo $cfg_memberurl;?>/buy_action.php" method="post">
  85. <input type="hidden" name="product" value="member">
  86. <table class="table">
  87. <tr>
  88. <th width="8%">选择</th>
  89. <th width="23%">产品名称</th>
  90. <th width="23%">会员类型</th>
  91. <th width="23%">时限(天)</th>
  92. <th>价格(元)</th>
  93. </tr>
  94. <tbody>
  95. <?php echo $membertypes?>
  96. </tbody>
  97. </table>
  98. <div class="text-center"><button type="submit" class="btn btn-success btn-sm">购买</button></div>
  99. </form>
  100. </div>
  101. </div>
  102. </div>
  103. </div>
  104. </main>
  105. <?php obtaintheme('foot.htm');?>
  106. </body>
  107. </html>