·
I am on an Angular project which uses multi-steps forms, and I wanted to do a mini-POC on my own to realize how simple can it be.
So here it is: https://github.com/vinny59200/VVMULTISTEPSFORM
Two web form pages:
―Name and firstname
―Full address
―Name and firstname
―Full address
You launch the app, you get to the Name/FirstName step, after submit you get to the full address step, the final submit validate the whole.
The app is designed with two components containing each form, a service to process the final result, and two models: a person class & an address class.
Have a good one!