How to Clear Bootstrap 5 form submission without Resetting User cookie

I have a Multi-step form.
At the last step -- Submit/Save to database --
After the Save I have a page Return with message and a link to
Return to the first page of the form
if they have more data to fill out using the same form.
They should be able to reuse the form while logged in to submit multiple reports using this form.
When the first starting page of the form returns all the fields are visually cleared but the data is still there in all fields.

If a new submission skips a field or fields any data previously in this field will be re-submitted in a new form submission.

I did clears of data in php in the "old days"
but I thought this would be a common component in Wappler by now -- when I search the forum or Google this particular post and thread comes up highest in the rankings --

So what IS the Wappler best practice for clearing all form fields on Save & Insert to table API?

So that the User can reuse the same form and have it truly empty of previous data for re-using the same form for another submission of data?

I tried to add this to the Insert-into-table API but I don't see how -- as one way to solve my problem.