Guest User

Untitled

a guest
Dec 10th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. $(document).ready(function() {
  2.  
  3. $("#login").click(function() {
  4.  
  5. var action = $("#loginform").attr('action');
  6. var form_data = {
  7. username: $("#username").val(),
  8. password: $("#password").val(),
  9. is_ajax: 1
  10. };
  11.  
  12. $.ajax({
  13. type: "POST",
  14. url: action,
  15. data: form_data,
  16. success: function(response)
  17. {
  18. if(response == 'success')
  19. $("#message").html("<div class=\"alert alert-success\"><button type=\"button\" class=\"close\" data-dismiss=\"alert\"><i class=\"icon-remove\"></i></button>Er is iets fout gegaan</div>");
  20. else
  21. $("#message").html("<div class=\"alert alert-error\"><button type=\"button\" class=\"close\" data-dismiss=\"alert\"><i class=\"icon-remove\"></i></button>Er is iets fout gegaan</div>");
  22. }
  23. });
  24.  
  25. return false;
  26. });
  27.  
  28. });
Add Comment
Please, Sign In to add comment