I need to make this:
<% simple_form_for :list_signup, :url => 'http://foobar.com" do |f| %>
...
Output:
<form name="myForm" action="http://foobar.com" class="list_signup" method="post">
...
I can't figure out how to add the name attribute and can't figure it out from the documentation at http://simple-form.plataformatec.com.br/
Any ideas?