-
Hi fellow Rubyists and Janko, I am starting a new app and would love to take this opportunity to introduce rodauth-rails as the authentication system instead of the Devise I am used to using. For some context, say we have the following:
Thank you very much for any help one could provide |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I recommend just making this form multi-step on the client-side, showing and hiding different parts of the form, and then submitting all the data to the create account endpoint in the end. The only use case I can imagine for wanting to make a multi-step form on the server side is remembering data that was already entered in case the user aborts. But that doesn't seem necessary for your use case. |
Beta Was this translation helpful? Give feedback.
I recommend just making this form multi-step on the client-side, showing and hiding different parts of the form, and then submitting all the data to the create account endpoint in the end.
The only use case I can imagine for wanting to make a multi-step form on the server side is remembering data that was already entered in case the user aborts. But that doesn't seem necessary for your use case.