<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Spring Security - Login.jsp</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link type="text/css" rel="stylesheet" href="http://localhost:8080/jxc/skins/default/css/ngmain.css" />
<script language=javascript src="http://localhost:8080/jxc/skins/default/js/ngcommon.js"></script>
<script language="javascript">
function doLogin()
{
document.form0.action = "<%=request.getContextPath()%>/loginAction!login.action";
document.form0.method = "post";
document.form0.submit();
}
</script>
</head>
<body onload='document.f.j_username.focus();'>
<h3>Login with Username and Password</h3>
<form name="f" method="POST"
action="<c:url value="j_spring_security_check"/>">
<table>
<tr>
<td align="right">Username</td>
<td><input type="text" name="j_username" value="a" /></td>
</tr>
<tr>
<td align="right">Password</td>
<td><input type="password" name="j_password" value="1" /></td>
</tr>
<tr>
<td colspan="2" align="right"><input type="submit" value="Login" />
<input type="reset" value="Reset" /></td>
</tr>
</table>
</form>
<center>
<div id="footer">
<h5>帮助 | 关于我们 | 使用条款 | 开放平台</h5>
<a href="http://localhost:8080/jxc/welcome.jsp">f_qiangqiang@qq.com</a>
</div>
</center>
<center><h1><a href="http://www.google.com.hk/">Google</a></h1></body></center>
</body>
</html>