16 lines
494 B
HTML
16 lines
494 B
HTML
<mat-sidenav-container class="main-container" *ngIf="isAuth">
|
|
<mat-sidenav #sidenav mode="side" [(opened)]="opened">
|
|
<app-menu></app-menu>
|
|
</mat-sidenav>
|
|
|
|
<mat-sidenav-content>
|
|
<button (click)="sidenav.toggle()">Меню</button>
|
|
<button (click)="signOut()" style="float: right">Выход</button>
|
|
<router-outlet></router-outlet>
|
|
</mat-sidenav-content>
|
|
</mat-sidenav-container>
|
|
|
|
<app-login *ngIf="!isAuth" (confirm)="setIsAuth()">
|
|
|
|
</app-login>
|