How can I add input fields to a form when the user presses a button?

I want to create a form that starts with a specific number of input fields, where a user can press a + button to add new input fields if they need to specify more variables.

Hi I achieved this and you can visit this thread for further information.

Basically you need to create an array, and each time the user add an input you add the newly added input into the array

1 Like

Awesome, thank you for this.