This holiday season, be on the look for cyber criminals looking to steal your credentials and credit card info and how to protect yourself from these threats. Read more.
Receive Zimperium proprietary research notes and vulnerability bulletins in your inbox
function checkForm(form)
{
...
if(!form.terms.checked) {
alert("Please indicate that you agree to the Privacy Policy");
form.terms.focus();
return false;
}
return true;
}