Guest User

Untitled

a guest
Feb 10th, 2018
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <form id="fk-login-form">
  2. <input id="fk-email-input" type="email" />
  3. <input id="fk-password-input" type="password" />
  4. <input type="submit" />
  5. </form>
  6.  
  7. <script>
  8. var initiateLogin = function() {
  9.  
  10. // Add handler to submit event
  11. $("#fk-login-form").submit(function(e) {
  12. let username = $("#fk-email-input").val();
  13. let password = $("#fk-password-input").val();
  14. login(username, password);
  15.  
  16. // Stop the from from reloading the page
  17. return false;
  18. });
  19. }
  20. </script>
Add Comment
Please, Sign In to add comment