login.jsp
2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>郑州机场航空物流信息平台</title>
<link rel="stylesheet" href="<%=request.getContextPath() %>/resource/library/css/eport/login.css" />
<script type="text/javascript" src="<%=request.getContextPath() %>/resource/library/js/jquery-1.11.3.js"></script>
<script type="text/javascript" src="<%=request.getContextPath() %>/resource/library/js/common/login.js"></script>
<script type="text/javascript">
var basePath = '<%=request.getContextPath()%>';
</script>
<script>
function setContentHeight (){
var web_subnav = document.getElementById( "login_bj" );
// var height = document.documentElement.clientHeight - 40 - document.getElementById("web-topbd").offsetHeight;
web_subnav.style.height = document.documentElement.clientHeight + 'px';
}
window.onload = setContentHeight;
window.onresize = setContentHeight;
</script>
</head>
<body>
<div id="login_bj">
<div id="login">
<DIV style="height: 83px;margin-top: 32px;">
<div style="font-size:28px;color:white;margin-left:400px;">河南省机场集团有限公司</div>
<div style="font-size:16px;color:white;margin-left:510px;"> 郑州机场航空物流信息平台</div>
</DIV>
<div class="alert alert-error error" style="display: none;width: 100%;margin-left:510px;line-height50px;color: white;">
<i class="iconfont"></i>
<span></span>
</div>
<div class="login_box">
<input class="admin" type="text" id="username" value="admin" placeholder="请输入帐号" autocomplete="off">
<input class="passWord" type="password" id="password" value="admin" placeholder="请输入密码" onkeydown="if(event.keyCode==13)loginpwd()"/>
<input class="submit" type="button" onClick="loginpwd()" />
<div class="clear"></div>
</div>
</div>
<div id="copyright"></div>
</div>
</body>
</html>