Guest User

Untitled

a guest
Jan 4th, 2018
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function check(username,password){
  2. if(username=="" && password=="")
  3. {
  4. window.alert("Please enter your Username & Password");
  5. }
  6. else if(username=="")
  7. {
  8. window.alert("Please enter your Username");
  9. }
  10. else if(password=="")
  11. {
  12. window.alert("Please enter your Password");
  13. }
  14.  
  15. else{
  16.  
  17. }
  18. }
  19. };
Add Comment
Please, Sign In to add comment