I want the ability to display the sign_up form on the homepage of my app home#index
as well as the default page Devise creates.
Devise has the instruction
Here is the explanation from Devise How To: Display a custom sign_in form anywhere in your app
Another example with form_for and posting to user_session_path:
<%= form_for(:user, :url => session_path(:user)) do |f| %>
<%= f.text_field :email %>
<%= f.password_field :password %>
<%= f.check_box :remember_me %>
<%= f.label :remember_me %>
<%= f.submit 'Sign in' %>
<%= link_to "Forgot your password?", new_password_path(:user) %>
<% end %>
I placed it in my new view