Created
September 19, 2012 19:39
-
-
Save mogigoma/3751758 to your computer and use it in GitHub Desktop.
CanadaComputers.com's undefeatable CAPTCHA
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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