init
This commit is contained in:
70
web/admin/login.jsp
Normal file
70
web/admin/login.jsp
Normal file
@@ -0,0 +1,70 @@
|
||||
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
||||
pageEncoding="UTF-8"%>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
|
||||
<!-- Bootstrap -->
|
||||
<link href="${pageContext.request.contextPath }/css/bootstrap.min.css" rel="stylesheet">
|
||||
<script src="${pageContext.request.contextPath }/js/jquery.min.js"></script>
|
||||
<script src="${pageContext.request.contextPath }/js/bootstrap.min.js"></script>
|
||||
<title>锋迷网-后台登录</title>
|
||||
<script type="text/javascript">
|
||||
$(function(){
|
||||
$("#eye").click(function(){
|
||||
if($("#password").attr("type")=="password"){
|
||||
$("#password").attr("type","text");
|
||||
$("#eye").attr("class","glyphicon glyphicon-eye-close");
|
||||
}else{
|
||||
$("#password").attr("type","password");
|
||||
$("#eye").attr("class","glyphicon glyphicon-eye-open");
|
||||
}
|
||||
})
|
||||
})
|
||||
</script>
|
||||
<style type="text/css">
|
||||
#main{
|
||||
position: absolute;
|
||||
width: 400px;
|
||||
height: 300px;
|
||||
left:50%;
|
||||
top:40%;
|
||||
margin-left: -200px;
|
||||
margin-top: -100px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="main" class="panel panel-primary">
|
||||
<div class="panel-heading">
|
||||
<div class="panel-title">
|
||||
锋迷网-后台登录
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<form action="${pageContext.request.contextPath }/adminLogin" method="post">
|
||||
<div class="form-group">
|
||||
<label>用户名:</label>
|
||||
<input type="text" name="username" id="" class="form-control" placeholder="请输入用户名……"/>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>密 码:</label>
|
||||
<div class="input-group">
|
||||
<input type="password" name="password" id="password" class="form-control" placeholder="请输入密码……"/>
|
||||
<span class="input-group-addon">
|
||||
<span class="glyphicon glyphicon-eye-open" id="eye"></span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" style="text-align: center;">
|
||||
<input type="submit" value="登录" class="btn btn-primary">
|
||||
<input type="reset" value="重置" class="btn btn-default">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user