国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

59 lines
3.1KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  7. <title>会员注册-<?php echo $cfg_webname;?></title>
  8. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/font/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/bootstrap.min.css">
  10. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
  11. <script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
  12. </head>
  13. <body class="body-bg">
  14. <?php obtaintheme('top.htm');?>
  15. <main class="container">
  16. <div class="row">
  17. <div class="col-md-12 text-center">
  18. <div class="login-from d-inline-block">
  19. <div class="login-box shadow-sm rounded text-left">
  20. <h2 class="text-center mb-3">会员注册</h2>
  21. <form name="form2" action="reg_new.php" method="post" id="regUser">
  22. <input type="hidden" name="dopost" value="regbase">
  23. <input type="hidden" name="step" value="1">
  24. <input type="hidden" name="mtype" value="个人">
  25. <input type="hidden" name="pid" value="<?php echo $pid;?>">
  26. <div class="form-group">
  27. <label>会员账号</label>
  28. <input type="text" name="userid" id="iptUserid" class="form-control" placeholder="请输入会员账号" required="required">
  29. </div>
  30. <div class="form-group">
  31. <label>会员密码</label>
  32. <input type="password" name="userpwd" id="iptUserpwd" class="form-control" placeholder="请输入会员密码" required="required">
  33. </div>
  34. <div class="form-group">
  35. <label>确认会员密码</label>
  36. <input type="password" name="userpwdok" id="iptUserpwdok" class="form-control" placeholder="请输入确认会员密码" required="required">
  37. </div>
  38. <div class="form-group">
  39. <label>验证码</label>
  40. <div class="input-group">
  41. <input type="text" name="vdcode" id="iptValidate" class="form-control text-uppercase" placeholder="请输入验证码" required="required">
  42. <img src="<?php echo $cfg_cmsurl;?>/apps/vdimgck.php" id="validateimg" onClick="this.src='<?php echo $cfg_cmsurl;?>/apps/vdimgck.php?'+new Date().getTime()+Math.round(Math.random() * 10000)" title="验证码">
  43. </div>
  44. </div>
  45. <div class="form-group form-check">
  46. <input type="checkbox" id="iptLicence" class="form-check-input" checked="false">
  47. <label class="form-check-label licence" for="iptLicence">我已阅读并接受<a href="">《会员注册条款》</a>和<a href="">《隐私保护条例》</a></label>
  48. </div>
  49. <div class="form-group"><button type="submit" class="btn btn-success btn-md btn-block">注册</button></div>
  50. <div><a href="<?php echo $cfg_memberurl;?>/login.php" class="btn btn-outline-success btn-md btn-block">登录</a></div>
  51. </form>
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. </main>
  57. <?php obtaintheme('foot.htm');?>
  58. </body>
  59. </html>