FORM Information Preview - Can I make the FORM, so when I click the SUBMIT button, it renders the info on the page or on another page

Hey @Nikola_Stoykov

If you are comfortable with a bit of code, here is a nice tutorial that uses a serializeArray() function in jQuery to get all the field values and print them out to a div.

Your forms have problems though. It looks like you copy-pasted most of the fields and forgot to change the IDs and names .

These need to be unique for every field. Every form also needs to have a unique ID. Basically every object in HTML needs a unique ID so you may want to address that before giving the code above a try.