Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<form action="post" action="your_processor" onsubmit="return false;">
<input type ="checkbox" name="agree" value="anything">
<b>Click me or the buck stops here.</b>
<input type="submit" name="submitbutton" onClick="check_agree(this.form);" value="Go">
</form>
<script language="javascript">
function check_agree (form) {
if (form.agree.checked) {
form.submitbutton.disabled = true;
form.submit();
}
else { alert('if you don\'t agree, we set you free.'); }
}
</script>