forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunsuccess.jsp
More file actions
40 lines (38 loc) · 1010 Bytes
/
unsuccess.jsp
File metadata and controls
40 lines (38 loc) · 1010 Bytes
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
<%@ page contentType="text/html;charset=gb2312"%>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<head>
<title>登录失败页面</title>
<link href="CSS/style.css" rel="stylesheet" type="text/css">
<body>
<table width="438" height="230" border="0" align="center">
<tr>
<td width="428" height="58">
<div align="center">
<h4 align="center">
错误提示
</h4>
</div>
</td>
</tr>
<tr >
<td align="center">
您的登录失败
</td>
</tr>
<tr>
<td align="center">
可能用户名或密码输入错误!
</td>
</tr>
<tr>
<td align="center">
<div align="center">
<a href="index.jsp">请点击此处返回登录页面</a>
</div>
</td>
</tr>
</table>
</body>