Guest User

Untitled

a guest
Nov 25th, 2016
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $(document).ready(function() {
  2. $( "#submit" ).on( 'click', function() {
  3. var username = $( "#username" ).val();
  4. var password = $( "#password" ).val();
  5. $.post('/login/', {username: username, password: password}, function(data) {
  6. window.location.replace(data.redirect);
  7. });
  8. });
  9. });
Add Comment
Please, Sign In to add comment