1
|
<h1 mat-dialog-title>{{ 'profileSettings.headline' | translate }}</h1>
|
2
|
|
3
|
<div mat-dialog-content>
|
4
|
<span class="notification-label">{{ 'profileSettings.notification' | translate }}</span>
|
5
|
<app-datetime [(date)]="date" [(time)]="time" [minuteStep]="15"></app-datetime>
|
6
|
</div>
|
7
|
|
8
|
<div mat-dialog-actions align="end">
|
9
|
<button mat-raised-button color="primary" (click)="onConfirmClick()">{{ 'button.confirm' | translate }}</button>
|
10
|
<button mat-raised-button color="basic" (click)="onCloseClick()">{{ 'button.close' | translate }}</button>
|
11
|
</div>
|