I am looking to design a multi-page form that adjusts its content based on the selections made by users on the initial page. Here is my plan:
Page One:
1) Which company do you prefer? (select one)
- Option 1
- Option 2
- Option 3
- Option 4
2) Which services are of interest to you?
- Option 1
- Option 2
- Option 3
- Option 1 & 2
- Option 1 & 3
- Option 2 $ 3
- Option 1, 2 & 3
On the following page, I aim to tailor the content based on the choices from questions #1 and #2. For instance, if a user selects Option 2 for the company and Option 3 for the service, the next page will display relevant questions related to those selections. Alternatively, if someone chooses Option 4 for the company and Options 1, 2, & 3 for services, a different set of questions will be presented.
I am considering utilizing $routeProvider for this functionality but would appreciate any guidance or examples on how to accomplish this. Additionally, I am using Firebase as my backend to store the data collected from the first page. Thank you in advance!