<% form_for :user, @user, :url => users_path(:from => 'landing'), :id => 'sign_up_form', :html => {:method => :create} do |f| -%>
Can someone tell me why the ID isn't working?
<% form_for :user, @user, :url => users_path(:from => 'landing'), :id => 'sign_up_form', :html => {:method => :create} do |f| -%>
Can someone tell me why the ID isn't working?
It should be inside the :html options, not on the same level as :url.
Take a look at the documentation and move the :id into the :html hash. http://apidock.com/rails/ActionView/Helpers/FormHelper/form_for