Style des formulaires d'ajout
This commit is contained in:
@@ -1,32 +1,32 @@
|
||||
<form [formGroup]="addForm" (ngSubmit)="onSubmit(addForm.value)">
|
||||
<div>
|
||||
<p class="form-group">
|
||||
<label for="name">Name of gear</label>
|
||||
<input id="name" type="text" formControlName="name">
|
||||
</div>
|
||||
<div>
|
||||
<input id="name" type="text" formControlName="name" class="form-control">
|
||||
</p>
|
||||
<p class="form-group">
|
||||
<label for="manufacturer">Manufacturer</label>
|
||||
<input id="manufacturer" type="text" formControlName="manufacturer">
|
||||
</div>
|
||||
<div>
|
||||
<input id="manufacturer" type="text" formControlName="manufacturer" class="form-control">
|
||||
</p>
|
||||
<p class="form-group">
|
||||
<label for="minSize">Min size of canopy</label>
|
||||
<input id="minSize" type="text" formControlName="minSize">
|
||||
</div>
|
||||
<div>
|
||||
<input id="minSize" type="text" formControlName="minSize" class="form-control">
|
||||
</p>
|
||||
<p class="form-group">
|
||||
<label for="maxSize">Max size of canopy</label>
|
||||
<input id="maxSize" type="text" formControlName="maxSize">
|
||||
</div>
|
||||
<div>
|
||||
<input id="maxSize" type="text" formControlName="maxSize" class="form-control">
|
||||
</p>
|
||||
<p class="form-group">
|
||||
<label for="aad">AAD system</label>
|
||||
<input id="aad" type="text" formControlName="aad">
|
||||
</div>
|
||||
<div>
|
||||
<input id="aad" type="text" formControlName="aad" class="form-control">
|
||||
</p>
|
||||
<p class="form-group">
|
||||
<label for="mainCanopy">Main Canopy</label>
|
||||
<input id="mainCanopy" type="text" formControlName="mainCanopy">
|
||||
</div>
|
||||
<div>
|
||||
<input id="mainCanopy" type="text" formControlName="mainCanopy" class="form-control">
|
||||
</p>
|
||||
<p class="form-group">
|
||||
<label for="reserveCanopy">Reserve canopy</label>
|
||||
<input id="reserveCanopy" type="text" formControlName="reserveCanopy">
|
||||
</div>
|
||||
<input id="reserveCanopy" type="text" formControlName="reserveCanopy" class="form-control">
|
||||
</p>
|
||||
|
||||
<button class="button" type="submit" class="btn btn-primary">Add</button>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user