| | |
| | | |
| | | <body> |
| | | <div class="login_top clearfix"> |
| | | <a class="larks_logo"><img src="${common_static}/static/companyLogo/larks-logo1.gif" width="247" height="48" alt="" /></a> |
| | | <a class="larks_logo"> |
| | | <img src="${common_static}/static/companyLogo/larks-logo1.gif" width="247" height="48" alt="" /> |
| | | <span style="margin-left: 20px;font-size: 26px">${Constants.company_name}</span> |
| | | </a> |
| | | <p> |
| | | <a href="http://www.larks.com.cn" target="_blank">网站首页</a> |
| | | <span>|</span> |
| | |
| | | </div> |
| | | <a class="login_btn" id="login">登录</a> |
| | | <a class="login_btn focus" id="logining" style="display:none;">登录中...</a> |
| | | <div style="margin-top: 6px;text-align: center;font-size: 15px;color: red;white-space: nowrap"> |
| | | 非密系统禁止处理、储存和传输涉密信息 |
| | | </div> |
| | | <div class="remember_password clearfix"> |
| | | <input type="checkbox" /><label>记住密码</label> |
| | | <a href="${base}/business/findPwd.html">忘记密码</a> |
| | |
| | | $("#usererr").show(); |
| | | $("#username").select(); |
| | | switchBtn(); |
| | | return; |
| | | return; |
| | | } |
| | | |
| | | |
| | | var pwd = $.trim($("#password").val()); |
| | | if($.util.isEmpty(pwd)) { |
| | | $("#pwderr").html("请输入密码"); |
| | |
| | | $("#pwderr").show(); |
| | | $("#password").select(); |
| | | switchBtn(); |
| | | return; |
| | | return; |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | var checkCode = $.trim($("#checkCode").val()); |
| | | if($.util.isEmpty(checkCode)) { |
| | | $("#yzmerr").html("请输入验证码"); |
| | |
| | | $("#yzmerr").show(); |
| | | $("#checkCode").select(); |
| | | switchBtn(); |
| | | return; |
| | | return; |
| | | } |
| | | |
| | | |
| | | $("#myform").submit(); |
| | | |
| | | |
| | | }); |
| | | |
| | | $(document).keyup(function(event) { |