feat: implement change password functionality with dialog and service integration

This commit is contained in:
2026-06-07 13:56:36 +03:30
parent cd09b09e3b
commit 2f67801700
9 changed files with 89 additions and 60 deletions
@@ -1,16 +1,14 @@
<shared-dialog
header="ویرایش گذرواژه"
header="تغییر گذرواژه"
[(visible)]="visible"
[modal]="true"
[style]="{ width: '500px' }"
[closable]="true"
(onHide)="close()"
>
(onHide)="close()">
<form [formGroup]="form" (submit)="submit()" class="flex flex-col gap-4">
<shared-password-input
[passwordControl]="form.controls.password"
[confirmPasswordControl]="form.controls.confirmPassword"
/>
[confirmPasswordControl]="form.controls.confirmPassword" />
<app-form-footer-actions [submitLabel]="'ذخیره'" [loading]="submitLoading()" (onCancel)="close()" />
</form>