You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
664 B
HTML
16 lines
664 B
HTML
|
6 years ago
|
<h4 mat-dialog-title>{{inputTitle}}</h4>
|
||
|
|
<mat-dialog-content>
|
||
|
|
<div>
|
||
|
|
<mat-form-field>
|
||
|
|
<input matInput (keyup.enter)="enterPressed()" [(ngModel)]="inputText" [placeholder]="inputPlaceholder">
|
||
|
|
</mat-form-field>
|
||
|
|
</div>
|
||
|
|
</mat-dialog-content>
|
||
|
|
<mat-dialog-actions>
|
||
|
|
<button mat-button mat-dialog-close>Cancel</button>
|
||
|
|
<!-- The mat-dialog-close directive optionally accepts a value as a result for the dialog. -->
|
||
|
|
<button mat-button [disabled]="!inputText" type="submit" (click)="enterPressed()">{{submitText}}</button>
|
||
|
|
<div class="mat-spinner" *ngIf="inputSubmitted">
|
||
|
|
<mat-spinner [diameter]="25"></mat-spinner>
|
||
|
|
</div>
|
||
|
|
</mat-dialog-actions>
|