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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="${common_website_static}/static/js/jquery-1.11.1.min.js"></script>
<link href="${common_static}/static/style/initpwd/css/password.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="${common_static}/static/ui/utilfunc/css/utilfunc.css" />
<script type="text/javascript" src="${common_static}/static/ui/utilfunc/js/utilfunc.js"></script>
<title>QQ绑定</title>
 
<script type="text/javascript">
    [#if err??]
        var err = '${err}';
        $(function() {
            window.top.popupTips(err);
        });
    [/#if]
 
    function checkForm(){
           var username = document.getElementById("username");
           var name = username.value;
           if(name.length == 0) {window.top.popupTips("请输入用户名");username.select();return; }
           
           var rwPwd = document.getElementById("rePwd").value;
           if(rwPwd.length == 0){ window.top.popupTips("请输入密码!");rwPwd.select();return; }
           document.getElementById('myform').submit();
       }
       
       $(function() {
             $(document).keyup(function(event) {
          if(event.keyCode==13) {
             checkForm();
          }
    });
       })
</script>
</head>
<body>
<div class="fw_top_wrap">
    <div class="fw_top">
       <a><img src="${common_static}/static/style/initpwd/images/find-password-logo.gif" width="247" height="48" alt="" /></a>
       <span><img src="${common_static}/static/images/index_dl_06.gif" width="189px" height="29px" alt="" /></span> 
    </div>
</div>
 
<div class="fw_content">
    <div class="qq_tix">
        温馨提示:绑定QQ账号可以使用第三方QQ号直接登陆我们的系统,可以让您更加方便、快捷!
    </div>
    <div class="qq_bd" >
    </div>
    <form action="${base}/business/qqBind.html" method="post" id="myform"> 
    <div class="fw_inputpass">
        <input type="hidden" name="openid" value="${openid}"/>
        <input type="hidden" name="nickname" value="${nickname}"/>
        <table style="margin-left:150px;">
            <tr>
                <td align="right">qq昵称:</td><td>${nickname}</td>
            </tr>
            <tr>
                <td align="right">用户名:</td><td><input name="username" id="username" value="${username}"/></td>
            </tr>
            <tr>
                <td align="right">密&nbsp;码:</td><td><input type="password" name="password" id="rePwd" value="${password}"/></td>
            </tr>
            <tr>
                <td colspan="2"><a style="margin-left:120px;" class="next_step_btn" href="javascript:checkForm();"><span>绑定QQ登录</span></a></td>
            </tr>
        </table>
    </div>
    </form>
</div>
</body>
</html>