|
|
@@ -25,25 +25,25 @@ |
|
|
|
<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>
|
|
|
|
<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>
|
|
|
|
<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>
|
|
|
|
<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>
|
|
|
|
<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">
|
|
|
|
<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>
|
|
|
|