Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

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