47 lines
1.2 KiB
HTML
47 lines
1.2 KiB
HTML
<form [formGroup]="addForm" (ngSubmit)="onSubmit(addForm.value)">
|
|
<p>
|
|
<mat-form-field>
|
|
<mat-label>Name of gear</mat-label>
|
|
<input matInput type="text" formControlName="name">
|
|
</mat-form-field>
|
|
</p>
|
|
<p>
|
|
<mat-form-field>
|
|
<mat-label>Manufacturer</mat-label>
|
|
<input matInput type="text" formControlName="manufacturer">
|
|
</mat-form-field>
|
|
</p>
|
|
<p>
|
|
<mat-form-field>
|
|
<mat-label>Min size of canopy</mat-label>
|
|
<input matInput type="text" formControlName="minSize">
|
|
</mat-form-field>
|
|
</p>
|
|
<p>
|
|
<mat-form-field>
|
|
<mat-label>Max size of canopy</mat-label>
|
|
<input matInput type="text" formControlName="maxSize">
|
|
</mat-form-field>
|
|
</p>
|
|
<p>
|
|
<mat-form-field>
|
|
<mat-label>AAD system</mat-label>
|
|
<input matInput type="text" formControlName="aad">
|
|
</mat-form-field>
|
|
</p>
|
|
<p>
|
|
<mat-form-field>
|
|
<mat-label>Main Canopy</mat-label>
|
|
<input matInput type="text" formControlName="mainCanopy">
|
|
</mat-form-field>
|
|
</p>
|
|
<p>
|
|
<mat-form-field>
|
|
<mat-label>Reserve canopy</mat-label>
|
|
<input matInput type="text" formControlName="reserveCanopy">
|
|
</mat-form-field>
|
|
</p>
|
|
|
|
<button mat-raised-button color="accent" type="submit">Add</button>
|
|
</form>
|