aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_modals/save-experiment-dialog/save-experiment-dialog.component.html
blob: a0b5d77196e3247e2984cafafa49f3d32ddc2948 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<h1 mat-dialog-title>Čuvanje eksperimenta</h1>
<div mat-dialog-content>
    <p>Unesite naziv eksperimenta:</p>
    <mat-form-field>
        <input type="text" matInput [(ngModel)]="selectedName">
    </mat-form-field>
    <p>Da li ste sigurni u izbor?</p>
</div>
<div mat-dialog-actions>
    <button mat-button [mat-dialog-close]="selectedName" cdkFocusInitial>Da</button>
    <button mat-button (click)="onNoClick()">Odustani</button>
</div>