Advertisement
Guest User

Untitled

a guest
Jan 14th, 2020
578
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.   login(username: String, password: String) {
  3.     console.log("LOGIN SERVICE");
  4.     const headers = new HttpHeaders({ "Content-Type": "application/json",  });
  5.  
  6.     console.log( this.LOGIN_URL + "?username=" + username + "&password="+password );
  7.     return this.http.post<String>(
  8.       "http://localhost:8080/login" + "?username=" + username + "&password="+password,
  9.       { headers: headers }
  10.     );
  11.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement