login.jsp
2.12 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
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<html>
<head>
<title> E-cology升级程序</title>
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript" src="/js/login.js"></script>
<link rel="stylesheet" href="/css/main.css" type="text/css">
</head>
<body style="height:100%;width:100%;">
<div id=warp>
<div style="height:60px;">
<div style="float:left;width:104px;height:50px;"><img style="margin-left:20px;margin-top:10px;" border="0" src="/img/logo.png"></div>
<div style="float:right;">
<div style="margin-right:30px;margin-top:10px;text-align:right;color:white;font-weight:bold;font-size:20px;line-height:60px;">E-cology系统升级程序</div>
</div>
</div>
<div style="height:380px;">
<div style="height:100%;width:120px;float:left;border:none;">
</div>
<div style="height:370px;width:636px;float:right;margin-top:10px;">
<div style="height:100%;width:620px;border:1px solid #42c9f0;background:white;margin-left:-10px;">
<div style="width:100%;height:160px;padding-top:14px;text-align:center;line-height:160px;font-size:26px; ">欢迎使用e-cology升级程序</div>
<div style="width:100%;font-size:18px;margin-top:20px;" >
<div style="width:100%;text-align:center;">请输入登录密码:</div>
<div style="margin-top:10px;text-align:center;" >
<input id="password" type="password" style="width:50%;height:25px;font-size:16px;line-height:25px;"/>
<div id="message" style="color:red;margin-top:10px;height:30px;width:100%;text-align:center;"></div>
</div>
</div>
</div>
</div>
</div>
<div style="clear:both;height:45px;">
<div style="width:97%;height:30px;padding-right:20px;padding-top:14px;" align="right">
<input id="ok" type="button" value="登录" style="background:url(/img/nextbtn.png);border:none;width:70px;height:25px;font-weight:bold;">
</div>
</div>
</div>
</body>
</html>