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
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Password Problem

  • 21-04-2009 3:15pm
    #1
    Registered Users 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