From 8aef9f628b5840bc7f981858b729442d1a3a7606 Mon Sep 17 00:00:00 2001 From: sanchezvem Date: Wed, 26 Nov 2025 14:12:01 +0100 Subject: [PATCH] added select --- src/app/components/profil-form/profil-form.html | 12 +++++++++--- src/app/components/profil-form/profil-form.ts | 5 ++++- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/app/components/profil-form/profil-form.html b/src/app/components/profil-form/profil-form.html index c1e0fef..84d52cc 100644 --- a/src/app/components/profil-form/profil-form.html +++ b/src/app/components/profil-form/profil-form.html @@ -5,7 +5,7 @@ - + @@ -14,18 +14,24 @@ - + + Fonction - + + + + + + Mot de passe diff --git a/src/app/components/profil-form/profil-form.ts b/src/app/components/profil-form/profil-form.ts index b82c8e3..469f6bf 100644 --- a/src/app/components/profil-form/profil-form.ts +++ b/src/app/components/profil-form/profil-form.ts @@ -4,6 +4,7 @@ import {NzColDirective} from "ng-zorro-antd/grid"; import {NzFlexDirective} from "ng-zorro-antd/flex"; import {NzFormControlComponent, NzFormDirective, NzFormItemComponent, NzFormLabelComponent} from "ng-zorro-antd/form"; import {NzInputDirective} from "ng-zorro-antd/input"; +import {NzOptionComponent, NzSelectComponent} from "ng-zorro-antd/select"; @Component({ selector: 'app-profil-form', @@ -16,7 +17,9 @@ import {NzInputDirective} from "ng-zorro-antd/input"; NzFormItemComponent, NzFormLabelComponent, NzInputDirective, - ReactiveFormsModule + ReactiveFormsModule, + NzSelectComponent, + NzOptionComponent ], templateUrl: './profil-form.html', styleUrl: './profil-form.css',