...
|
...
|
@@ -15,7 +15,7 @@ |
|
|
<div class="field">
|
|
|
<label for="identityCardNo">身份证号:</label>
|
|
|
|
|
|
<input id="identityCardNo" name="identityCardNo" type="number" pattern="\d*" inputmode="numeric" placeholder="请填写身份证号" maxlength="18"/>
|
|
|
<input id="identityCardNo" name="identityCardNo" type="text" placeholder="请填写身份证号" maxlength="18"/>
|
|
|
<div class="clearfix"></div>
|
|
|
</div>
|
|
|
|
...
|
...
|
@@ -35,13 +35,13 @@ |
|
|
|
|
|
<div class="field">
|
|
|
<label for="name">手机号:</label>
|
|
|
<input id="mobile" name="mobile" type="tel" placeholder="银行预留手机号码" maxlength="11"/>
|
|
|
<input id="mobile" name="mobile" type="tel" placeholder="银行预留手机号码" type="number" pattern="\d{11}"/>
|
|
|
<div class="clearfix"></div>
|
|
|
</div>
|
|
|
|
|
|
<div class="field">
|
|
|
<label for="name">验证码:</label>
|
|
|
<input id="sns-check-code" style="width: 120px;" name="snsCheckCode" type="number" pattern="\d*" placeholder="请输入验证码" size="6" maxlength="6"/>
|
|
|
<input id="sns-check-code" style="width: 120px;" name="snsCheckCode" type="number" pattern="\d{6}" placeholder="请输入验证码" size="6" />
|
|
|
<button id="send-sms" class="count-down">获取验证码</button>
|
|
|
<div class="clearfix"></div>
|
|
|
</div>
|
...
|
...
|
|