Topic: Submitting a form
I have a really simple for
<form method="post" action="http://localhost:3000/clients">
<table border="0" cellspacing="0" cellpadding="0">
<caption>Log In</caption>
<tbody>
<tr>
<td>Username</td>
<td><input type="text" name="username" id="username"></td>
</tr>
<tr class="even">
<td>Password</td>
<td><input type="password" name="password" id="password"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="login" id="login" value="login"> <a href="http://localhost:3000/clients"> bypass </a> </td>
</tr>
</tbody>
</table>
</form>but when i press the login button i get a error that reads:
Unknown action
The action 'create' could not be found for ClientsController