my- log.jsp file
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
<html:html locale="true">
<head>
<title>HI</title>
<html:base/>
</head>
<body bgcolor="#fdf5e6">
<logic:notPresent name="org.apache.struts.action.MESSAGE" scope="application">
<font color="red">
ERROR: Application resources not loaded -- check
servlet container
logs for error messages.
</font>
</logic:notPresent>
<html:form action="/loginpage">
<h3>HI</h3>
<table>
<tr>
<td align="right">Login:</td>
<td><html:text property="login"/></td>
</tr>
<tr>
<td align="right">Password:</td>
<td><html:text property="password"/></td>
</tr>
</table>
</html:form>
</body>
</html:html>
my
struts config details
<action
path="/log"
forward="/jsp/log.jsp"/>
NOW IS IT NECESSARY TO MAKE ANY ACTION CLASS,
CAN I MAKE ABOVE
JSP WITHOUT ANY ACTION CLASS