1
|
<div class="row header">
|
2
|
<img class="logo" src="../../assets/images/logo.png" />
|
3
|
<div class="language-and-user">
|
4
|
<button (click)="localizationService.switchLanguage('cs')">CS</button>
|
5
|
<button (click)="localizationService.switchLanguage('en')">EN</button>
|
6
|
<button class="user-info" (click)="onProfileClick()">
|
7
|
<img class="user-icon" src="../../assets/images/default-user.png"/>
|
8
|
<span *ngIf="profile" class="user-name">{{profile.firstName}} {{profile.lastName}}</span>
|
9
|
</button>
|
10
|
</div>
|
11
|
</div>
|