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
39
40
41
42
43
44
45
<!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>
<title>${Constants.company_name}用户中心</title>
<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>
<script type="text/javascript">
$(function() {
    $("#findPwdform").Validform({tiptype:3,btnSubmit:"#submitBtn"});
    $("#validatecode").click(function() {
        //更换验证码
        $(this).attr("src",Math.floor(Math.random()*0x10000) + '.validatecode');
        $("#checkCode")[0].validform_valid="false";
    });
})
</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 list1-active"> 1.确认账号 </li>
      <li  class="zhpwd_sub_list2 ">2.身份验证</li>
      <li  class="zhpwd_sub_list3">3.重置密码</li>
    </ul>
    <form method="post" id="findPwdform" action="${base}/user/validPage.html">
        <div class="zcuser"> <span>用户名:</span>
      <input class="zc_txt" name="username" type="text"  datatype="*1-18" errormsg="用户名至少1个字符,最多18个字符" sucmsg="用户名不存在" ajaxurl="${base}/user/queryUser.html" nullmsg="请输入用户名"/><b style="height:30px; line-height:30px;" class="Validform_checktip" style="width:100px;"></b>
      </div>
              <div class="zcuser"> <span>验证码:</span>
      <input class="zc_txt zhpwdl" name="checkCode" id="checkCode" type="text" datatype="n4-4" nullmsg="请输入验证码" errormsg="验证码不正确" sucmsg="验证通过" ajaxurl="${base}/user/checkCode.html"/>
      <img width="100" height="30" style="padding-bottom: 2px;padding-left:5px;" id="validatecode" align="absmiddle" title="更换新的验证码" src="Kaptcha.validatecode" /><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>