Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Password Problem

  • 21-04-2009 03:15PM
    #1
    Registered Users, Registered Users 2 Posts: 25


    I'm a noob when it comes to web dev but here it goes.
    I have an assignment due soon and im having some trouble.
    im required to design a program that will only grant access to the web page when the correct pin is entered. the pin is any number between 1000 - 4000 inclusive. there is also a max number of incorrect attempts(3 by default) which is to be implemented by a loop.
    This is what I've got so far, help anyone?:confused:

    <Title>Login Page</Title>
    <head><link rel="stylesheet" type="text/css" href="stylesheet.css">
    <script type="text/javascript">
    function CheckPin(password)
    {
    var att = 1;
    while (att <= 3)
    {
    if(password < 1000 || password > 4000)
    {
    alert("Incorrect Password");
    att++;
    return " ";
    }
    else
    {
    window.location = "index.html";
    }
    }
    }
    </script>
    </head>
    <body>
    <center><img src="images/pic.png"/><br/><br/>
    <p>This is a password protected site.<br>
    <form name="password" action="index.html" method="get">
    Password:
    <input type="password" name="password" size="4">
    <input type="button" value="Login>>" onclick="CheckPin('password')">
    </center>
    </form>
    </body>
    </html>


Comments

Advertisement