You can copy the development registration controller from here
You should add something like this:
if resource.save #handle this else #handle this redirect_to new_user_registration_path end
Then in your routes:
devise_for :users, :controllers => {:registrations => 'registrations'}
I'm not sure how to do this without overriding the controller
source share