国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

53 wiersze
2.8KB

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