HTTP/1.1 200 OK
Cache-Control: private
Content-Type: text/html; charset=utf-8
Server: Microsoft-IIS/8.5
X-AspNet-Version: 2.0.50727
Set-Cookie: ASP.NET_SessionId=s4hzy155scrom445kvi4rpjn; path=/; HttpOnly
X-Powered-By: ASP.NET
Date: Thu, 24 Oct 2024 09:58:51 GMT
Content-Length: 5363
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=yes;"/>
<title>短信运营管理平台</title>
<link rel="stylesheet" href="css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/invalid.css" type="text/css" media="screen" />
<script type="text/javascript" src="scripts/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="scripts/jquery.cookie.js"></script>
<!--[if IE]><script type="text/javascript" src="scripts/jquery.bgiframe.js"></script><![endif]-->
<!-- Internet Explorer .png-fix -->
<!--[if IE 6]>
<script type="text/javascript" src="scripts/DD_belatedPNG_0.0.7a.js"></script>
<![endif]-->
<style type="text/css">
.ui-footer a{color:#ccc;text-decoration: none;height:20px;line-height:20px;display:inline-block;}
.ui-footer {
position: absolute;
bottom: 0;
width: 100%;
padding: 10px 0;
}
.ui-footer-copyright {
margin-bottom: 10px;
font-size: 14px;
position: relative;
text-align: center;
line-height: 15px
}
</style>
</head>
<body id="login">
<div id="login-wrapper" class="png_bg">
<div id="login-top">
<img id="logo" src="images/logo.png" alt="Simpla Admin logo" />
</div>
<div id="login-content">
<form id="login_form" method="post" name="login_form" onsubmit="return sub();" action="chklogin.aspx">
<div class="notification information png_bg">
<div id="tip" align="center" >
欢迎使用短信综合信息管理系统。
</div>
</div>
<p>
<label>用户名</label>
<input class="text-input" type="text" name="account" id="account" />
</p>
<div class="clear" style="height:1px;"></div>
<p>
<label>密 码</label>
<input class="text-input" type="password" name="password" id="password" />
</p>
<div class="clear" style="height:1px;"></div>
<p>
<label>验证码</label>
<input type="text" id="code" class="text-input text_auth" name="code" maxlength="4" /><a class="img_auth"><img id='yzmimg' align='absmiddle' onclick="this.src='code.aspx?time='+new Date().getTime()" src="code.aspx" /></a>
</p>
<div class="clear" style="height:1px;"></div>
<p>
<label> </label>
<input type="hidden" name="action" value="login" />
<input type="checkbox" name="remembermeadmin" id="remembermeadmin" style="width:15px;" /><label style="width:80px;">记住登录</label>
<input class="button" id="lgbt" type="submit" style="width:70px;display:none" value="登录系统" />
</p>
</form>
<input class="button" onclick="loginbt(event)" type="button" style="width:70px;" value="登录系统" />
</div>
</div>
<div class="ui-footer">
<div class="ui-footer-copyright">
<a href="https://beian.miit.gov.cn/" target="_blank"></a>
</div>
</div>
<script language="javascript" type="text/javascript">
function loginbt() {
event.preventDefault();
document.getElementById("login_form").submit();
}
//初始化页面时验证是否记住了密码
$(document).ready(function() {
try {
$.cookie("remembermeadmin", "false", { expires: -1 });
$.cookie("loginsaccountadmin", '', { expires: -1 });
$.cookie("loginspasswordadmin", '', { expires: -1 });
} catch (e) {
//alert(e.Description);
}
});
function sub() {
//var test_user = /^[a-zA-Z0-9]{1}([a-zA-Z0-9_]){3,19}$/;
$.cookie("account", '', { expires: -1 });
$.cookie("password", '', { expires: -1 });
var test_pass = /^(\w){6,30}$/;
var account = $("#account").val();
if (account == "") {
$("#tip").html("账号不能为空!");
return false;
}
//if (!test_user.test(account)) {
// $("#tip").html("账号只能由5-20个字母、数字组成!");
// return false;
//}
var password = $("#password").val();
if (password == "") {
$("#tip").html("密码不能为空!");
return false;
}
//if (!te