2 Star 2 Fork 0

月魂/代理服务器

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 3.97 KB
一键复制 编辑 原始数据 按行查看 历史
月魂 提交于 2017-06-06 14:35 . add all
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div class="top-content">
<div class="inner-bg">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2 text">
<h1 style="font-family:'微软雅黑';"><strong><img src="images/zhongduan_logo.png" style="width:60px;"/>行为检测分析系统</strong>
</h1>
<div class="description">
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-sm-offset-3 form-box">
<div class="form-top">
<div class="form-top-left">
<h3>登录进入系统</h3>
<p>请输入用户名和密码进行登录:</p>
</div>
<div class="form-top-right">
<i class="fa fa-lock"></i>
</div>
</div>
<div class="form-bottom">
<table>
<div class="form-group">
<label class="sr-only">用户名</label>
<input id="username" type="text" name="username" placeholder="用户名..."
class="form-username form-control">
</div>
<div class="form-group">
<label class="sr-only" for="form-password">密 码</label>
<input id="pwd" type="password" name="form-password" placeholder="密码..."
class="form-password form-control"
onKeyPress="if (event.keyCode == 13) login();">
</div>
<button class="btn" style="background-color:rgb(255, 185, 0);" onClick="login();">登 录
</button>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<script typet="text/javascript" src="http://libs.baidu.com/jquery/1.9.1/jquery.min.js"></script>
</body>
<script>
function login(){
var code=$("#username").val();
var co = $("#pwd").val();
if($("#username").val()==''){
alert('用户名格式不正确!');
return;
}
if($("#pwd").val()==''){
alert('密码不能为空!');
return;
}
$.ajax({
url : "http://localhost:8080/terminal/DataServlet", //将会转发此请求到10.10.21.65:8080/terminal/DataServlet
type : "POST",
dataType : "json",
data : {//post请求参数
func_id:20000,
pagesize:24,
pageindex:0,
username:$("#username").val(),
pwd:$("#pwd").val()
},
success : function(data) {
console.log(data);
alert("===success===");
logindo();
if(data.success=="1"){
logindo();
}else{
if(data.err_code=="1"){
alert("登录尝试次数过多,请您"+data.locked_mins+"分钟后重新登录");
}else{
alert("登录失败,请重新登陆!");
}
}
},
error : function() {
alert("====error====");
}
});
}
function logindo(){
window.location = 'http://baidu.com';
}
</script>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ynnyh/dailifuwuqi.git
[email protected]:ynnyh/dailifuwuqi.git
ynnyh
dailifuwuqi
代理服务器
master

搜索帮助