added deliverer page with deliverer-form and deliverer-table

This commit is contained in:
2025-11-15 15:12:53 +01:00
parent 4037117ad3
commit d43f46b906
9 changed files with 502 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
<form nz-form nzLayout="horizontal" [formGroup]="delivererForm" (ngSubmit)="submitForm()">
<nz-form-item nz-flex>
<nz-form-label nzSpan="9" nzRequired>
Transporteur
</nz-form-label>
<nz-form-control nzSpan="12" nzErrorTip="Ce champ est requis">
<input nz-input placeholder="Chronopost" formControlName="transporter">
</nz-form-control>
</nz-form-item>
</form>