1 Star 0 Fork 3

张珈玮 / 基于Servlet,Tomcat,Mysql的用户信息管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
login.html 3.52 KB
一键复制 编辑 原始数据 按行查看 历史
Crane 提交于 2020-04-14 12:23 . 前端html页面
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>用户信息管理系统登录页面</title>
<!-- 1. 导入CSS的全局样式 -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- 2. jQuery导入,建议使用1.9以上的版本 -->
<script src="js/jquery-2.1.0.min.js"></script>
<!-- 3. 导入bootstrap的js文件 -->
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript"></script>
<style>
#body{
background-image: url("images/21.jpg");
}
</style>
<script>
//验证码
$(function () {
$("img").click(function () {
var d=new Date();
this.src="/UserProject/checkCode?"+d.getTime();
});
});
</script>
<script>
//登录请求
$(function () {
$("#submit").click(function () {
var username=$("#user").val();
var password=$("#password").val();
var code=$("#verifycode").val();
$.ajax({
url:"/UserProject/loginServlet",
data:{"username":username,"password":password,"code":code},
type:"POST",
//dataType:"json",
success:function (data) {
if(data.code_result==true){
if(data.msg==true){
window.location.href="/UserProject/index.html";
}else{
/*window.location.reload();*/
$("#message").text("账号或密码错误,请重试!");
$("#user").val("");
$("#password").val("");
$("#verifycode").val("");
}
}else{
/*window.location.reload();*/
$("#message").text("验证码错误,请重试");
$("#user").val("");
$("#password").val("");
$("#verifycode").val("");
}
}
});
});
});
</script>
</head>
<body id="body">
<div class="container" style="width: 400px;margin-top: 110px;background-color: rgba(255,255,255,0.8)">
<h3 style="text-align: center;">管理员登录</h3>
<!-- <form action="login" method="post">-->
<div class="form-group" >
<label for="user">用户名:</label>
<input type="text" name="user" class="form-control" id="user" placeholder="请输入用户名"/>
</div>
<div class="form-group">
<label for="password">密码:</label>
<input type="password" name="password" class="form-control" id="password" placeholder="请输入密码"/>
</div>
<div class="form-inline" style="margin-top: 35px"><!--class="form-inline"-->
<label for="vcode">验证码:</label>
<input type="text" name="verifycode" class="form-control" id="verifycode" placeholder="请输入验证码" style="width: 120px;"/>
<a style="margin-left: 50px"><img src="/UserProject/checkCode" title="看不清点击刷新" id="vcode"/></a>
</div>
<hr/>
<div class="form-group" style="text-align: center;"><!--class="form-group"-->
<input style="width: 200px;height: 40px" id="submit" class="btn btn btn-primary" type="button" value="登录" >
</div>
<!-- </form>-->
<!-- 出错显示的信息框 -->
<div class="alert alert-warning alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" >
<span>&times;</span>
</button>
<strong id="message">您尚未进行登录,请您登录!</strong>
</div>
</div>
</body>
</html>
Java
1
https://gitee.com/njdjpl/System.git
git@gitee.com:njdjpl/System.git
njdjpl
System
基于Servlet,Tomcat,Mysql的用户信息管理系统
master

搜索帮助