Guest User

fopit

a guest
Apr 6th, 2016
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script>
  4. function check()
  5. {
  6. if(login.user.value == "")
  7. {
  8. alert("Login Field is Empty");
  9. return false;
  10. }
  11. if(login.pass.value == "" )
  12. {
  13. alert("Password is Required");
  14. return false;
  15. }
  16. }
  17.  
  18. </script>
  19.  
  20. </head>
  21.  
  22. <body>
  23.  
  24. <form name= "login" onsubmit= "check()">
  25. <br>Username: <input type="text" name= "user">
  26. <br>Password: <input type= "password" name= "pass">
  27. <br><input type= "submit" name= "submit" value= "Submit">
  28.  
  29. </form>
  30. </body>
  31. </html>
Add Comment
Please, Sign In to add comment