Return to site

GITHUB: multi-step forms

· github,fullstack

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.

Two web form pages:
―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!