我有一个用户模型 UserServices 并通过登录页面对注册用户进行身份验证。
你能帮我写一下在Authentication Controller中使用的方法吗?
<fieldset><legend>Authentication</legend>
<form:form action="login.htm" commandName="user">
<table>
<tr>
<td>User Name:<FONT color="red"><form:errors
path="userName" /></FONT></td>
</tr>
<tr>
<td><form:input path="userName" /></td>
</tr>
<tr>
<td>Password:<FONT color="red"><form:errors
path="password" /></FONT></td>
</tr>
<tr>
<td><form:password path="password" /></td>
</tr>
<tr>
<td><input type="submit" value="Submit" /></td>
</tr>
</table>
</form:form>
</fieldset>