Advertisement
Guest User

Untitled

a guest
Aug 14th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. $('#button').click(
  2. function () {
  3. var info = "";
  4. //get name
  5. var userName = $('#userbox').val();
  6. //get pw
  7. var password = $('#pwbox').val();
  8. //checkinfo
  9. if (userName.trim() == "" && password.trim() == "") {
  10. info = "*Bạn chưa nhập tên đăng nhập </br> *Bạn chưa nhập mật khẩu";
  11. }
  12. else if (userName.trim() == "") {
  13. info = "*Bạn chưa nhập tên đăng nhập";
  14. }
  15. else if (password.trim() == "") {
  16. info = "*Bạn chưa nhập mật khẩu";
  17. }
  18. else if (userName.trim() != "admin") {
  19. info = "*Tên đăng nhập không tồn tại trong hệ thống";
  20. }
  21. else {
  22. if (password.trim() != "12345678") {
  23. info = "*Mật khẩu không chính xác";
  24. }
  25. else {
  26. info = "*Đăng nhập thành công";
  27. }
  28. }
  29. $("#noti").html(info);
  30. }
  31. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement