added 2 years ago
PeopleQuiz is a safe site
This threat warning is erroneous. The javascript flagged here is a simple script written by the site owners and simply prevents registration submission if passwords dont match and/or the policy has not been agreed to. Not sure why Norton is flagging but its a bug with Norton.
Here is the entire script:
// ----------------------------------------------
// registrationcheck.js
//
//-----------------------------------------------
function validateRegistration() {
if (document.form1.agreetoconditions.checked == false ) {
alert("You need to agree to the Privacy Policy and Conditions Conditions of Use");
document.form1.agreetoconditions.focus();
document.form1.agreetoconditions.select();
return false;
}
if (document.form1.password.value != document.form1.password2.value ) {
alert("The password you entered twice was not the same word");
document.form1.password.focus();
document.form1.password.select();
return false;
}
document.form1.submit;
}
|