DaniWeb IT Discussion Community

Code Snippets (http://www.daniweb.com/code/)
-   html (http://www.daniweb.com/code/html.html)
-   -   Password Protect Your Web Page (http://www.daniweb.com/code/snippet692.html)

Hosmer23 html syntax
Apr 21st, 2007
A handy code that brings up a password window to keep others off of the web pages you choose.

  1. <script language="JavaScript">
  2. var password;
  3. var pass1="PASSWORD-HERE";
  4. password=prompt('Whats The Magic Word?',' ');
  5. if (password==pass1) alert('That Is Correct!');
  6. else {
  7. window.location="SITE-LINK";
  8. }
  9. </script>