|
@@ -1 +1,38 @@
|
|
|
-<p>header works!</p>
|
|
|
+<header>
|
|
|
+ <h1>Good morning, Mohamed!</h1>
|
|
|
+ <div>
|
|
|
+ <mat-chip-listbox aria-label="Fish selection">
|
|
|
+ <mat-chip-option>Check in </mat-chip-option>
|
|
|
+ <mat-chip-option>Check out</mat-chip-option>
|
|
|
+ </mat-chip-listbox>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="search">
|
|
|
+ <mat-form-field class="example-full-width" appearance="outline">
|
|
|
+ <input type="search" matInput placeholder="Search..." />
|
|
|
+ </mat-form-field>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <button
|
|
|
+ mat-icon-button
|
|
|
+ [matMenuTriggerFor]="menu"
|
|
|
+ aria-label="Example icon-button with a menu"
|
|
|
+ >
|
|
|
+ <mat-icon>more_vert</mat-icon>
|
|
|
+ </button>
|
|
|
+ <mat-menu #menu="matMenu">
|
|
|
+ <button mat-menu-item>
|
|
|
+ <mat-icon>dialpad</mat-icon>
|
|
|
+ <span>Redial</span>
|
|
|
+ </button>
|
|
|
+ <button mat-menu-item disabled>
|
|
|
+ <mat-icon>voicemail</mat-icon>
|
|
|
+ <span>Check voice mail</span>
|
|
|
+ </button>
|
|
|
+ <button mat-menu-item>
|
|
|
+ <mat-icon>notifications_off</mat-icon>
|
|
|
+ <span>Disable alerts</span>
|
|
|
+ </button>
|
|
|
+ </mat-menu>
|
|
|
+ </div>
|
|
|
+</header>
|