I am using angular 14 with firebase Authentication. I want to alert the message in the home page when users are logged out.
So, does anyone have an idea for this please let me know. Thank you
auth.service.ts
SignOut() {
return this.afAuth.signOut().then(() => {
localStorage.removeItem('user');
this.router.navigate(['home']);
});
}
dashboard-menu.component.html
<a class="dropdown-item" (click)="authService.SignOut()">Logout</a>