I started using Devise for a project and I'm a bit disappointed because everything is so hardwired somewhere deep in the Devise Gem. I find it very difficult to create a custom Sign Up or Sign In process.
What I'm trying to do is show a simple signup form anywhere on my site (solution found here: http://pupeno.com/2010/08/29/show-a-devise-log-in-form-in-another-page/ ) and submit it with jQuery.post, retrieve the result, update error messages and finally sign up the user.
I don't find this documented anywhere. When I submit my form this way I catch an exception saying missing template. It would be much easier if I could customize the Controller and Actions and do everything myself.
Has anyone a solution, a link, a blog post, whatever to help me here? Thanks!