URI:
   DIR Return Create A Forum - Home
       ---------------------------------------------------------
       buzzcodes
  HTML https://buzzcodes.createaforum.com
       ---------------------------------------------------------
       *****************************************************
   DIR Return to: Free Codes js,html,php etc  
       *****************************************************
       #Post#: 3--------------------------------------------------
       Login BOX javascript htaccess.login
   DIR By: TEAMBOKER
       Date: February 12, 2012, 9:16 am
       ---------------------------------------------------------
       --- Code ---
       
       <!-- TWO STEPS TO INSTALL HTACCESS LOGIN:
       
       1.  Copy the coding into the HEAD of your HTML document
       2.  Add the last code into the BODY of your HTML document
       -->
       
       <!-- STEP ONE: Paste this code into the HEAD of your HTML
       document  -->
       
       <HEAD>
       
       <SCRIPT LANGUAGE="JavaScript">
       
       <!-- Based on FTP log in by:  Reinout Verkerk -->
       <!-- Original:  Gordon Hudson (sales@hostroute.com) -->
       <!-- Web Site:
  HTML http://www.hostroute.com/
       -->
       <!-- This script and many more are available free online at
       -->
       <!-- The JavaScript Source!!
  HTML http://javascript.internet.com
       -->
       
       <!-- Begin
       function Login(form) {
       var username = form.username.value;
       var password = form.password.value;
       var server = form.server.value;
       if (username && password && server) {
  HTML var htsite = "http://" + username + ":" + password + "@" +
       server;
       window.location = htsite;
       }
       else {
       alert("Please enter your username and password.");
       }
       }
       //  End -->
       </script>
       
       </HEAD>
       
       <!-- STEP TWO: Copy this code into the BODY of your HTML
       document  -->
       
       <BODY>
       
       <!-- The hidden form field "server" needs to be the
       address of your password protected directory. -->
       
       <form name=login>
       <input type="hidden" name="server"
       value="www.domain.com/secure/">
       Username:
       <input type=text name=username size=20>
       
       
       
       Password:
       <input type=password name=password size=20>
       <input type=button value="Login!" onClick="Login(this.form)"
       name="button">
       </form>
       
       <p><center>
       <font face="arial, helvetica" size"-2">Free JavaScripts
       provided
       
       by <a href="
  HTML http://javascriptsource.com
       ">The JavaScript
       Source</a></font>
       </center><p>
       
       <!-- Script Size:  1.58 KB -->
       --- End Code ---
       *****************************************************
       Page 1 of 1