Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 3x 3x 3x 3x 3x 6x 6x 6x 4x 6x | import { CommonModule } from "@angular/common";
import { Component, OnInit } from "@angular/core";
import { TranslateModule } from "@ngx-translate/core";
import { LoginService } from "../../login/login.service";
@Component({
selector: "app-logout-btn",
imports: [
CommonModule,
TranslateModule,
],
standalone: true,
templateUrl: "./logout-btn.component.html",
})
export class LogoutBtnComponent implements OnInit {
constructor (private readonly ls: LoginService) {
ls.init();
}
isLoggedIn = false;
ngOnInit (): void {
this.isLoggedIn = this.ls.isLoggedIn();
}
logout = () => this.ls.logout();
}
|