Idna: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
(New page: <HTML> <script language="JavaScript"> var password; var pass1="PASSWORD-HERE"; password=prompt('Whats The Password?',' '); if (password==200158) alert('That Is Correct!'); else { window....)
 
No edit summary
Line 3: Line 3:
var password;
var password;
var pass1="PASSWORD-HERE";
var pass1="PASSWORD-HERE";
password=prompt('Whats The Password?',' ');
password=prompt('Whats The Magic Word?',' ');
if (password==200158) alert('That Is Correct!');
if (password==pass1) alert('That Is Correct!');
else {
else {
   window.location="SITE-LINK";
   window.location="SITE-LINK";
}
}
</script></html>
</script></html>

Revision as of 01:21, 5 February 2012

<html> <script language="JavaScript"> var password; var pass1="PASSWORD-HERE"; password=prompt('Whats The Magic Word?',' '); if (password==pass1) alert('That Is Correct!'); else {

 window.location="SITE-LINK";

} </script></html>