Guest User

Untitled

a guest
Apr 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function validate()
  5. {
  6. var uid=document.getElementById("uid").value;
  7. var pwd=document.getElementById("pwd").value;
  8. var flag="true";
  9. if(uid == null || uid.length<6)
  10. {
  11. flag="false";
  12. alert("username should contain min 6 charactesr");
  13. document.getElementById("uid").value=" ";
  14. }
  15. else if(pwd == null || pwd.length<6)
  16. {
  17. flag="false";
  18. alert("pass min 6");
  19. document.getElementById("pwd").value=" ";
  20. }
  21. if (flag=="false");
  22. return false;
  23. }
  24. </script>
  25. </head>
  26. <body bgcolor="brown">
  27. <form align="center" onsubmit="return validate()">
  28.  
  29. usname:<input type="label" name="uid" value=""></br></br>
  30. passwd:<input type="password" name="pwd" value=""></br><br>
  31. <button type="submit">Submit</button>
  32. <button type="button">Reset</button>
  33. </form>
  34. </body>
  35. </html>
Add Comment
Please, Sign In to add comment