24 lines
641 B
HTML
24 lines
641 B
HTML
<h2 mat-dialog-title>Pax</h2>
|
|
<mat-dialog-content>
|
|
<form [formGroup]="form">
|
|
<div class="row-container">
|
|
<mat-form-field class="flex-auto">
|
|
<mat-label>Pax</mat-label>
|
|
<input
|
|
type="text"
|
|
matInput
|
|
#quantity
|
|
formControlName="pax"
|
|
autocomplete="off"
|
|
(focus)="quantity.select()"
|
|
cdkFocusInitial
|
|
/>
|
|
</mat-form-field>
|
|
</div>
|
|
</form>
|
|
</mat-dialog-content>
|
|
<mat-dialog-actions>
|
|
<button mat-button [mat-dialog-close]="false">Cancel</button>
|
|
<button mat-button (click)="accept()" color="primary">Ok</button>
|
|
</mat-dialog-actions>
|