update Angular to v20
Reviewed-on: #4 Co-authored-by: sandre <perso@sebastienandre.com> Co-committed-by: sandre <perso@sebastienandre.com>
This commit was merged in pull request #4.
This commit is contained in:
@@ -1,48 +1,48 @@
|
||||
<div class="content">
|
||||
<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>
|
||||
<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>
|
||||
<button mat-raised-button color="accent" type="submit">Add</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user