2025-07-02 22:40:35 -03:00
|
|
|
<nav class="navbar">
|
|
|
|
|
<div class="navbar-brand">
|
|
|
|
|
<img *ngIf="logoUrl" [src]="logoUrl" alt="App Logo" class="logo">
|
|
|
|
|
<!-- <span class="app-title">USCIB Carnet Portal</span> -->
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="navbar-menu">
|
|
|
|
|
<button mat-button (click)="navigateTo('home')">Home</button>
|
2025-08-02 22:32:20 -03:00
|
|
|
|
2025-07-02 22:40:35 -03:00
|
|
|
<div class="profile-container">
|
|
|
|
|
<button mat-icon-button (click)="toggleProfileMenu()" class="profile-button">
|
|
|
|
|
<mat-icon>account_circle</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
<div class="profile-menu" *ngIf="showProfileMenu">
|
|
|
|
|
<div class="profile-info">
|
|
|
|
|
<mat-icon>email</mat-icon>
|
|
|
|
|
<span>{{ userEmail }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
2025-08-10 20:36:29 -03:00
|
|
|
<button mat-menu-item (click)="navigateTo('usersettings')">
|
2025-08-02 22:32:20 -03:00
|
|
|
<mat-icon>settings</mat-icon>
|
|
|
|
|
<span>User Preferences</span>
|
|
|
|
|
</button>
|
|
|
|
|
|
2025-07-02 22:40:35 -03:00
|
|
|
<button mat-menu-item (click)="logout()">
|
|
|
|
|
<mat-icon>logout</mat-icon>
|
|
|
|
|
<span>Logout</span>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</nav>
|