Hi @Anonymous you may want to use a gallery for this depending on the complexity of your form. as mentioned, form is best to capture the inputs and regenerate a new form for the second set of input.
Have a look at this to give you an idea.
Here is a gallery, the collection adds some columns which are blank and a counter
Collect(_govForm,{Name:Blank(), Surname: Blank(), Mobile: Blank(), Email: Blank(), ID: __ID});
UpdateContext({__ID:__ID + 1})
The collection function will add a single entry and it will be visible as below. you will notice two icons, + and X

the + icon have the same code to it as the onvisible code and add a new entry to the gallery which will show that row in the gallery:
Collect(_govForm,{Name:Blank(), Surname: Blank(), Mobile: Blank(), Email: Blank(), ID: __ID});
UpdateContext({__ID:__ID + 1}).
by clicking twice the gallery gets two more rows

the x will delete the selected row
Remove(_govForm,LookUp(_govForm,ID=ThisItem.ID))
hope this helps you.