Advertisement
BaneOfSmite

Untitled

Jan 19th, 2021
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. function login() {
  2. var email = document.getElementById('inputEmailLogin').value;
  3. var pass = document.getElementById('inputPasswordLogin').value;
  4. var data = {
  5. "password": pass
  6. };
  7. console.log(data);
  8. var request = new XMLHttpRequest();
  9. request.open('GET', "/login/" + email);
  10. request.setRequestHeader("Content-Type", "application/json");
  11. request.onload = function () {
  12. if (request.responseText == "Logging In") {
  13. console.log("Login");
  14. } else {
  15. console.log("Error");
  16. }
  17. };
  18. request.send(JSON.stringify(data));
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement