cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link href="${common_website_static}/static/plugins/validform/css/validform.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="${common_static}/static/script/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="${common_website_static}/static/plugins/validform/js/validform.js"></script>
<title>${Constants.company_name}用户中心</title>
<script type="text/javascript">
$(function() {
    $("#findPwdform").Validform({tiptype:3,btnSubmit:"#submitBtn"});
})
</script>
</head>
<body>
[#include "/uc/include/loginHead.html" /]
<div class="zhpwd">
<h1><font><a href="${base}/user/login.html">返回登陆页面</a></font>找回密码</h1>
  <div class="zhpwd_cont">
    <ul class="zhpwd_sub">
      <li class="zhpwd_sub_list1"> 1.确认账号 </li>
      <li  class="zhpwd_sub_list2 list2-active ">2.身份验证</li>
      <li  class="zhpwd_sub_list3">3.重置密码</li>
    </ul>
    <p>验证码已发送到您的手机${mobile}</p>
    <form action="${base}/user/confirmCheck.html" method="post" id="findPwdform">
              <div class="zcuser"> <span>验证码:</span>
      <input class="zc_txt zhpwdl" name="checkCode" type="text"  datatype="*1-18" nullmsg="请输入验证码" errormsg="验证码不正确" sucmsg="验证通过" ajaxurl="${base}/user/checksendCode.html"/>
      <b style="height:30px; line-height:30px;" class="Validform_checktip" style="width:100px;"></b>
      </div>
      <div class="zcuser">
      <input class="zhpwd_btn" name="" value="确定" type="button" id="submitBtn"/>
      </div>
      </form>
  </div>
</div>
[#include "/uc/include/loginFoot.html" /]
</body>
</html>