|
<<%@ page language="java" contentType="text/html; charset=Windows-31J" %>
<%@ taglib uri="/WEB-INF/struts-html" prefix="html" %>
<html:html>
<head>
<title>Strutsアプリケーション</title>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-31J">
<html:javascript formName="loginForm" />
</head>
<body>
<html:form action="login" onsubmit="return validateLoginForm(this);">
<table>
<tr>
<th>ID</th>
<td>
<html:text property="id" />
<html:errors property="id"/>
</td>
</tr>
<tr>
<th>Pass</th>
<td>
<html:password property="password" />
<html:errors property="password"/>
</td>
</tr>
</table>
<html:submit value="ログイン"/>
</html:form>
</body>
</html:html>
|
|
|
|