Guest User

Untitled

a guest
Apr 5th, 2017
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>username and password</title>
  4. <script type="text/javascript">
  5. function test()
  6. {
  7. uname=document.frmlogin.user;
  8. pd=document.frmlogin.pwd;
  9. if(uname value==" ")
  10. {
  11. alert("enter password");
  12. uname.focus();
  13. return false;
  14. }
  15. if(pd.value.lenght<b)
  16. {
  17. alert("plz enter atleast 6 characters for password");
  18. pd.focus();
  19. return false;
  20. }
  21. return true;}
  22. </script></head>
  23. <body>
  24. <h3>login form </h3>
  25. <form name ="formlogin" onsubmit="return test()">
  26. Username:<input type="text" name="user"><br>
  27. Password:<input type="password"name="pwd"><br>
  28. <input type="Submit" Value="Submit">
  29. </form>
  30. </today>
  31. </html>
Add Comment
Please, Sign In to add comment