aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_modals/save-experiment-dialog/save-experiment-dialog.component.html
blob: 00ee98c519554a1ab102e04a9cc5568f40d07fe3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<h1 mat-dialog-title class="text-center">Sačuvaj eksperiment</h1>
<div mat-dialog-content class="mt-5 mb-4 mx-1">
    Naziv eksperimenta:<br>
    <mat-form-field [style.width.px]=250>
        <input type="text" matInput [(ngModel)]="selectedName" cdkFocusInitial>
    </mat-form-field>
    <p *ngIf="wrongAlreadyExists" class="wrongInput">Izaberi drugi naziv za eskperiment.<br>Eskperiment sa unetim nazivom već postoji u kolekciji.</p>
    <p *ngIf="wrongEmptyName" class="wrongInput">Unesite naziv eksperimenta.</p>
</div>
<div mat-dialog-actions class="justify-content-center">
    <button id="btnYes" mat-stroked-button color="basic" (click)="onYesClick()">Sačuvaj</button>
    <button id="btnNo" mat-stroked-button (click)="onNoClick()">Odustani</button>
</div>