<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-template.tld" prefix="template" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ page contentType="text/html; charset=GBK" %>
<html:html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<p>
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<bean:message key="login.welcome" />
<html:form action="/login.do" method="POST">
USERNAME:
<br>
<html:text property="username"  maxlength="20"/>
<br><br>
PASSWORD:
<br>
<html:password property="password"  maxlength="20"/>
<br><br>
<html:submit property="submit" value="Submit" onmouseover="this.style.cursor = 'hand'"/>
<html:reset value="Reset" onmouseover="this.style.cursor = 'hand'"  /><br>
</html:form>
</table>
<html:errors />
</body>
</html:html>