Password Establishment

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Optimusrollout5
    New Member
    • Jan 2012
    • 1

    Password Establishment

    I need help making a fully functional password field. Every time I try to make the code that I have for my log-in page work, it doesn't connect to my website's home page, or an error message. Instead, it just sends me back to the same page. Do you have any advise?

    Here is the Source Code for my devastated creation so far:

    Code:
     
    <html>
    <head>
    <title> TextPage 101 Login Page </title>
    <br/>
    <body bgcolor="ultra-violate" text="white">
    <link href="StyleSheetTemplate6(Site2005 TextPage101.5Version)" rel="stylesheet" type="text/css" />
    <br/>
    <center>
    <h1> TextPage 101.5 Log-in Page <h1/>
    <br/>
    
    <h3> If you don't know the password, Contact me Whenever I am 
    
    
    available, at (410)-404-3568, between the times of 3:00PM-4:00PM.
    
    No hints available at this time.</h3>
    <?php
    
     $con = mysql_connect
    ("E:\Flash Drive\F.D.OF.E\Web Design\HTML\HTML\Site 2005\Text Page 101.5 Ultra-Violet"
    ,"TextPageUser20","OptimusPrime101");
    
     if (!$con)
       {
       die('Could not connect: ' . mysql_error());
    
       }
     
    // 
    > 
    
    
    
    <script type="text/javascript" src="jquery.js">
    </script>
    
    <script type="text/javascript">
    
    $(document).ready(function()
    {
      $(":OptimusPrime101").css("background-color","black");
    });
    
    </script>
    
    </head>
    
    <body>
    
    
    
    <form action="G:\Flash Drive\F.D.OF.E\Web Design\HTML\HTML\Site 2005\Text Page 101.5 Ultra-Violet"
     method="get">
    
    Name: <input type="text" name="username" />
    
    <br/>
    
    Password: <input type="password" name="password" />
    
    <br />
    
    <br />
    
    <input type="reset" value="Reset" />
    
    <input type="submit" value="Submit" />
    
    <br/>
    
    </form>
    
    
    </body>
    
    </html>
Working...