Advertisement
Guest User

Untitled

a guest
Sep 18th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(document).ready(function(){
  3.  
  4. $('form[name=loginForm]').submit(function(){
  5.  
  6. $.post('scandiaweb/admin/index.php?pos=login',{username: $('[name=username]').val(), password: $('[name=password]').val() },
  7. function(data){
  8. // alert(data);
  9. if(data.success){
  10. location.href=data.redirect;
  11. }else{
  12. $('errorConsol').html(data.message);
  13. }
  14. },'json');
  15.  
  16. return false;
  17. });
  18. });
  19. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement