forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
34 lines (34 loc) · 1.19 KB
/
index.htm
File metadata and controls
34 lines (34 loc) · 1.19 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>管理员登录</title>
<link href="../css/default.css" rel="stylesheet" type="text/css"/>
<script src="../js/default.js"></script>
</head>
<body>
<p align="center" style=" margin-top:80">管理员入口外不得尝试进入!!!</p>
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#F5f7f7">
<form name="form" method="post" action="login.jsp">
<tr align="center">
<td height="27" colspan="2" bgcolor="#21536A"><div id="reg">管理员登录</div></td>
</tr>
<tr>
<td width="200" height="22" align="center">用 户 名:</td>
<td width="300">
<input name="name" type="text" ></td>
</tr>
<tr>
<td height="22" align="center">密 码:</td>
<td><input type="password" name="password"></td>
</tr>
<tr align="center">
<td height="35" colspan="2"><input type="submit" name="Submit" value="登录">
<input type="reset" name="Reset" value="重置"></td>
</tr>
</form>
</table>
</body>
</html>