|
|
|
@ -6,7 +6,8 @@ |
|
|
|
|
|
|
|
|
|
<div class="form-group col-12 col-sm-6 col-md-4 col-lg-3"> |
|
|
|
|
<label class="form-label">Date de début</label> |
|
|
|
|
<input (change)="onStartingDateChange($event)" [ngClass]="{ 'is-invalid': submitted && form.startingDate.errors }" [value]="referencement.startingDate | date:'yyyy-MM-dd'" |
|
|
|
|
<input (change)="onStartingDateChange($event)" [ngClass]="{ 'is-invalid': submitted && form.startingDate.errors }" |
|
|
|
|
[value]="referencement.startingDate | date:'yyyy-MM-dd'" |
|
|
|
|
class="form-control" |
|
|
|
|
formControlName="startingDate" |
|
|
|
|
type="date"> |
|
|
|
@ -14,7 +15,8 @@ |
|
|
|
|
|
|
|
|
|
<div class="form-group col-12 col-sm-6 col-md-4 col-lg-3"> |
|
|
|
|
<label class="form-label">Date de fin</label> |
|
|
|
|
<input (change)="onEndingDateChange($event)" [ngClass]="{ 'is-invalid': submitted && form.endingDate.errors }" [value]="referencement.endingDate | date:'yyyy-MM-dd'" |
|
|
|
|
<input (change)="onEndingDateChange($event)" [ngClass]="{ 'is-invalid': submitted && form.endingDate.errors }" |
|
|
|
|
[value]="referencement.endingDate | date:'yyyy-MM-dd'" |
|
|
|
|
class="form-control" |
|
|
|
|
formControlName="endingDate" |
|
|
|
|
type="date"> |
|
|
|
|