forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser_logon.jsp
More file actions
49 lines (49 loc) · 2.07 KB
/
user_logon.jsp
File metadata and controls
49 lines (49 loc) · 2.07 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
47
48
49
<%@ page contentType="text/html; charset=GBK" %>
<%
response.setHeader("Cache-Control","no-cache");
response.setHeader("Cache-Control","no-store");
response.setDateHeader("Expires",0);
response.setHeader("Pragma","no-cache");
%>
<html>
<head>
<title>用户登录</title>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
</head>
<link href="css/css.css" rel="stylesheet" type="text/css">
<script src="js/validate.js"></script>
<body bgcolor="#ffffff" onLoad="clockon(bgclock)">
<table width="630" border="0" cellspacing="0" cellpadding="0" class="tableBorder6">
<tr>
<td height="165" valign="top"><jsp:include page="top.jsp"/></td>
</tr>
<tr><td height="9"></td></tr>
<tr>
<td height="360" valign="top"><form method="post" action="user_modify.jsp" name="forms">
<table width="97%" border="0" align="center" cellpadding="0" cellspacing="1" class="tableNew">
<tr>
<td height="26" colspan="2" align="center" class="TableTitle1">用户登录</td>
</tr>
<tr>
<td height="27" align="center" bgcolor="#FFFFFF">用户名:</td>
<td width="466" align="center" bgcolor="#FFFFFF"><input name="uid" type="text" size="50"></td>
</tr>
<tr>
<td height="27" align="center" bgcolor="#FFFFFF">密 码:</td>
<td width="466" height="27" align="center" bgcolor="#FFFFFF"><input name="password" type="password" size="50"></td>
</tr>
<tr>
<td height="27" colspan="2" align="center" bgcolor="#FFFFFF"><input name="Submit" type="submit" class="btn_grey" onClick="return logons()" value="登录">
<input type="hidden" value="logon" name="action" >
<input name="Submit2" type="button" class="btn_grey" onClick="javascript:location.href='user_return.jsp'" value="找回密码"></td>
</tr>
</table>
</form></td>
</tr>
<tr>
<td align="center"><jsp:include page="bottom.jsp"/></td>
</tr>
</table>
</body>
</html>