Agreement form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to add a page that gives some rules and regulations, then
requires a checked box with I AGREE next to it before the customer moves to
the next page. I need to save the agreement.

any advice?

My host supports FP extensions on windows server, MSSQL Server,ODBC
 
Hi,
something like this
Check here to agree: <input type="checkbox" name="agree">
<input type="submit" onclick="if(!this.form.agree.checked){alert('You must
agree');return false;" value="Submit Form">

Cheers,
Jon
 
Back
Top