Skip to content

Instantly share code, notes, and snippets.

@mogigoma
Created September 19, 2012 19:39
Show Gist options
  • Save mogigoma/3751758 to your computer and use it in GitHub Desktop.
Save mogigoma/3751758 to your computer and use it in GitHub Desktop.
CanadaComputers.com's undefeatable CAPTCHA
function SubmitVerify()
{
var form1 = document.login;
var se_code;
se_code = document.getElementById("security_code").value;
se_code_0 = "I2xQTk";
if (se_code.toLowerCase() != se_code_0.toLowerCase())
{
alert("The security code you entered is incorrect! Please try again.");
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment