How to create an online/electronic "Click to Agree" Contract?

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

Guest

Is there a template or resouce (software, service, etc...) that would allow
me to create one of those "Click to Agree" contracts/agreements we've all
used online? I've searched FrontPage and Googled my question, but can't find
an answer.
 
Hi Gregg,

It is just a form with a check box that uses script to make sure that the check box is check when the form is submitted.

<form method="POST" action="--WEBBOT-SELF--">
<!--webbot bot="SaveResults" U-File="http://develop/dHTML/_private/form_results.csv" S-Format="TEXT/CSV" S-Label-Fields="TRUE" -->
<p>
<input type="checkbox" name="C1" value="ON">
<input type="submit" value="Submit" name="B1" onclick="if (!this.form.C1.checked) { alert('You must agree to our terms and conditions');return false;} else { return true }" >
<input type="reset" value="Reset" name="B2">
</p>
</form>
 
Back
Top