Guest User

Untitled

a guest
Mar 27th, 2018
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title> Its a login form!
  4. </title>
  5. <script type="text/javascript">
  6. function isValid()
  7. {
  8. var password=document.getElementById('password').value;
  9. var username=document.getElementById('username').value;
  10. if(password=="lol" && username=="adarsh")
  11. {
  12. alert("You're in. Ok. Bye!");
  13. }
  14. else
  15. {
  16. alert("You got the wrong password");
  17. }
  18. }
  19. </script>
  20. </head>
  21. <form name="PasswordField" action="">
  22. username: <input type="text" id="username"><br>
  23. password: <input type="password" id="password"> <br>
  24. <input type="button" value="Login" onclick="isValid();">
  25. </form>
  26. </html>
Add Comment
Please, Sign In to add comment