|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
- <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
- <title>会员注册-<?php echo $cfg_webname;?></title>
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
- <script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
- </head>
- <body class="body-bg">
- <?php obtaintheme('top.htm');?>
- <main class="container">
- <div class="row">
- <div class="col-md-12 text-center">
- <div class="login-from d-inline-block">
- <div class="login-box shadow-sm rounded text-left">
- <h2 class="text-center mb-3">会员注册</h2>
- <form name="form2" action="reg_new.php" method="post" id="regUser">
- <input type="hidden" name="dopost" value="regbase">
- <input type="hidden" name="step" value="1">
- <input type="hidden" name="mtype" value="个人">
- <input type="hidden" name="pid" value="<?php echo $pid;?>">
- <div class="form-group">
- <label>会员账号</label>
- <input type="text" name="userid" id="iptUserid" class="form-control" placeholder="请输入会员账号" required="required">
- </div>
- <div class="form-group">
- <label>会员密码</label>
- <input type="password" name="userpwd" id="iptUserpwd" class="form-control" placeholder="请输入会员密码" required="required">
- </div>
- <div class="form-group">
- <label>确认会员密码</label>
- <input type="password" name="userpwdok" id="iptUserpwdok" class="form-control" placeholder="请输入确认会员密码" required="required">
- </div>
- <div class="form-group">
- <label>验证码</label>
- <div class="input-group">
- <input type="text" name="vdcode" id="iptValidate" class="form-control text-uppercase" placeholder="请输入验证码" required="required">
- <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="验证码">
- </div>
- </div>
- <div class="form-group form-check">
- <input type="checkbox" id="iptLicence" class="form-check-input" checked="false">
- <label class="form-check-label licence" for="iptLicence">我已阅读并接受<a href="">《会员注册条款》</a>和<a href="">《隐私保护条例》</a></label>
- </div>
- <div class="form-group"><button type="submit" class="btn btn-success btn-md btn-block">注册</button></div>
- <div><a href="<?php echo $cfg_memberurl;?>/login.php" class="btn btn-outline-success btn-md btn-block">登录</a></div>
- </form>
- </div>
- </div>
- </div>
- </div>
- </main>
- <?php obtaintheme('foot.htm');?>
- </body>
- </html>
|