国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

54 satır
2.8KB

  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="/static/web/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
  10. <link rel="stylesheet" href="/static/web/css/style.css">
  11. </head>
  12. <body class="body-bg">
  13. <?php obtaintheme('top.htm');?>
  14. <main class="container">
  15. <div class="login-from">
  16. <div class="login-box shadow-sm rounded">
  17. <h2 class="text-center mb-3">会员注册</h2>
  18. <form name="form2" action="reg_new.php" method="post" id="regUser">
  19. <input type="hidden" name="dopost" value="regbase">
  20. <input type="hidden" name="step" value="1">
  21. <input type="hidden" name="mtype" value="个人">
  22. <input type="hidden" name="pid" value="<?php echo $pid;?>">
  23. <div class="form-group">
  24. <label for="iptUserid">账号</label>
  25. <input type="text" name="userid" id="iptUserid" class="form-control" placeholder="请输入账号" required="required">
  26. </div>
  27. <div class="form-group">
  28. <label for="iptUserpwd">密码</label>
  29. <input type="password" name="userpwd" id="iptUserpwd" class="form-control" placeholder="请输入密码" required="required">
  30. </div>
  31. <div class="form-group">
  32. <label for="iptUserpwdok">确认密码</label>
  33. <input type="password" name="userpwdok" id="iptUserpwdok" class="form-control" placeholder="请输入确认密码" required="required">
  34. </div>
  35. <div class="form-group">
  36. <label for="iptValidate">验证码</label>
  37. <div class="input-group">
  38. <input type="text" name="vdcode" id="iptValidate" class="form-control text-uppercase" placeholder="请输入验证码" required="required">
  39. <img src="<?php echo $cfg_phpurl;?>/vdimgck.php" id="validateimg" onclick="this.src='<?php echo $cfg_phpurl;?>/vdimgck.php?'+new Date().getTime()+Math.round(Math.random() * 10000)" title="验证码">
  40. </div>
  41. </div>
  42. <div class="form-group form-check">
  43. <input type="checkbox" id="iptLicence" class="form-check-input" checked="false">
  44. <label class="form-check-label licence" for="iptLicence">我已阅读并接受<a href="">《会员注册条款》</a>和<a href="">《隐私保护条例》</a></label>
  45. </div>
  46. <div class="form-group"><button type="submit" class="btn btn-success btn-block">注册</button></div>
  47. <div><a href="<?php echo $cfg_memberurl;?>/login.php" class="btn btn-outline-success btn-block">登录</a></div>
  48. </form>
  49. </div>
  50. </div>
  51. </main>
  52. <?php obtaintheme('foot.htm');?>
  53. </body>
  54. </html>