I'm using rails 3 with devise. I have a standard user signup form with name, email and password.
I need to create an additional signup form that lives within a pricing page where the user can signup with name, email, password and credit card information.
Should I be using the devise registrations controller or a new endpoint? I tried pointing to the devise registrations#create endpoint but with an invalid for submission the controller is redirecting to the wrong URL.
Any suggestions on how to best create an additional signup page with credit card subscription info included would be appreciated. Thanks