Advertisement
Guest User

angular auth service

a guest
Feb 2nd, 2022
413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export class AuthService{
  2.  
  3.   constructor(
  4.     private http: HttpClient,
  5.   ) { }
  6.  
  7.   login(username: string, password: string){
  8.     return this.http.post<User>('http://localhost:8080/login', {username, password});
  9.   }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement