I need to verify my form information and send an acknowledgement page.
This is what I’ve tried but it isn’t working. Is there a way to incorporate both?
This verifies that all fields are filled out:
<input type=button value="Verify Information" onclick="verify();">
<input type=reset value="Clear Form"><br>
This directs to acknowledgement page:
</form>
<form action="acknowledgement.html" method="get">
<input type="submit" name="submit"
VALUE="Submit">
</form>
Use
onSubmitAll of your form elements need to be between the start and end
<form>tags. But you knew that already 🙂