From fb2f105520827e2fb439da230b43ed90892ed329 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Tue, 17 Jun 2025 20:20:13 +0530 Subject: [PATCH] feat: update password modal --- frontend/components.d.ts | 1 + .../components/Modals/ChangePasswordModal.vue | 65 +++++++++++++++++++ .../components/Settings/ProfileSettings.vue | 25 +++---- 3 files changed, 75 insertions(+), 16 deletions(-) create mode 100644 frontend/src/components/Modals/ChangePasswordModal.vue diff --git a/frontend/components.d.ts b/frontend/components.d.ts index 5c91efb8..514e74c0 100644 --- a/frontend/components.d.ts +++ b/frontend/components.d.ts @@ -40,6 +40,7 @@ declare module 'vue' { CallUI: typeof import('./src/components/Telephony/CallUI.vue')['default'] CameraIcon: typeof import('./src/components/Icons/CameraIcon.vue')['default'] CertificateIcon: typeof import('./src/components/Icons/CertificateIcon.vue')['default'] + ChangePasswordModal: typeof import('./src/components/Modals/ChangePasswordModal.vue')['default'] CheckCircleIcon: typeof import('./src/components/Icons/CheckCircleIcon.vue')['default'] CheckIcon: typeof import('./src/components/Icons/CheckIcon.vue')['default'] CollapseSidebar: typeof import('./src/components/Icons/CollapseSidebar.vue')['default'] diff --git a/frontend/src/components/Modals/ChangePasswordModal.vue b/frontend/src/components/Modals/ChangePasswordModal.vue new file mode 100644 index 00000000..19bed6aa --- /dev/null +++ b/frontend/src/components/Modals/ChangePasswordModal.vue @@ -0,0 +1,65 @@ + + diff --git a/frontend/src/components/Settings/ProfileSettings.vue b/frontend/src/components/Settings/ProfileSettings.vue index 68a0128f..919b3f6c 100644 --- a/frontend/src/components/Settings/ProfileSettings.vue +++ b/frontend/src/components/Settings/ProfileSettings.vue @@ -16,8 +16,13 @@