## I'm not sure how to re-write the :action=> tag in my old code snippet below to use the boostrap_form_for context. Can someone help?
<%= form_tag(:action => 'attempt_login') do %>
<%= error_messages_for(@user) %>
<table>
<tr>
<th>email</th>
<td><%= email_field_tag(:email) %></td>
</tr>
<tr>
<th>password</th>
<td><%= password_field_tag(:password) %></td>
</tr>
</table>
<div class="frm-button">
<td><%= submit_tag("login") %></td>
</div>
<% end %>
Use the
url: ''
instead. If you have problem finding the right url, runrake routes
and search for your action in there.You should have in your
routes.rb
something like:then edit your form:
Hope that helps.