Devise create various forms, among them one for signing up and one for logging in of course. These are the forms as they are generated in Devise 1.0.8:
<h2>Sign up</h2> <% form_for resource_name, resource, :url => registration_path(resource_name) do |f| -%> <%= f.error_messages %><%= f.label :email %> <%= f.text_field :email %> <%= f.label :password %> <%= f.password_field :password %> <%= f.label :password_confirmation %> <%= f.password_field :password_confirmation %> <%= f.submit "Sign up" %> <% end -%> <%= render :partial => "shared/devise_links" %>
and
<h2>Sign in</h2> <% form_for resource_name, resource, :url => session_path(resource_name) do |f| -%><%= f.label :email %> <%= f.text_field :email %> <%= f.label :password %> <%= f.password_field :password %> <% if devise_mapping.rememberable? -%><%= f.check_box :remember_me %> <%= f.label :remember_me %> <% end -%><%= f.submit "Sign in" %> <% end -%> <%= render :partial => "shared/devise_links" %>
If you try to put them somewhere else you’ll run into some problem. There are some variables/methods those forms use that you’ll be lacking, specifically: resource_name, resource and for logging in also devise_mapping. I’ve recently tried to put them both in the homepage for an upcoming project of mine and this is how I’ve solved it:
module ContentHelper def resource_name :user end def resource @resource ||= User.new end def devise_mapping @devise_mapping ||= Devise.mappings[:user] end end
Thanks, man! Just what I was looking for.
Devise does a great “demo,” but the default behaviors just don’t do the trick for most apps. Thanks for solving this one in an elegant way!
This is awesome. Thank you for posting it. It saved me big time. The only issue I have is when I submit the form, it actually takes me to the actual devise page and not my controller. Looks like the redirects are off for errors. Any ideas how to solve that with your brilliant ways.
Hey any1 got a solution for this problem , that is redirecting the errors .. else if say the password is wrong i end up coming back to the original devise page
same here… I put the code in ApplicationHelper file so I can sign in from anywhere. But when I press Sign in button, it redirects me to the original sign in form of devise…
Any ideas?
Try out this solution:
http://stackoverflow.com/questions/3546289/override-devise-registrations-controller
Good stuff, thanks!
Thank you very much for that! Awesome solution!
Thanks for this! I was trying to do the same thing and couldn’t figure out how to get it working.
sorry for the n00b question here, but where do I place this module in my rails project?
You don’t have to create this module anywhere. You have to find the Helper module for whatever controller you are working in. If you controller is called BlahController then in your project you should have a BlahHelper.
Thanks! Worked great for my project.
Thanks dude, i was doing it by passing in local variables to the partial, but this is good too. I didn’t know what the devise_mappings was.
Thank you So much!! But the Records are not saved. What to do for it ?
Thank you, this was of great help.
Is there a similar solution to handling form errors when the forms are on other pages? So that the redirect containing error messages doesn’t go to the default form pages?
Did you ever find a solution, i am having the same issue
Even i have the same issue… Let me know if u ve found a solution..
Did you find a solution? I’m having the same issue as well
The trick is overrides the custom behaviour of sessions controller and registrations controller.
The link below is one good start:
https://stackoverflow.com/questions/6240141/devise-redirect-on-sign-up-failure
Isn’t this incorrect?
def resource
@resource ||= User.new
end
Doesn’t resource point to the current instance in some cases:
if devise_mapping.confirmable? && resource.pending_reconfirmation?
This would end up as:
User.new.pending_reconfirmation?
Ah, let me know if I have misinterpreted this.
Can this be used to solve problem for registrations edit form ??
Exactly what I needed. Thanks!