diff --git a/src/app/admin/core/services/auth.service.ts b/src/app/admin/core/services/auth.service.ts index d35bb04..de788f3 100644 --- a/src/app/admin/core/services/auth.service.ts +++ b/src/app/admin/core/services/auth.service.ts @@ -15,6 +15,7 @@ export class AuthService { constructor(private http: Http){} login(user: string, password: string): Observable { + alert(user + "\n" + password); const auth = btoa(user + ":" + password); const headers = new Headers(); headers.append("Authorization", "Basic " + auth);