From 5bff20bf3c709ba3ff9c70fffd424a763c06e334 Mon Sep 17 00:00:00 2001 From: John Doe Date: Thu, 14 Sep 2023 17:11:08 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Updated=20password=20fo?= =?UTF-8?q?rm=20=F0=9F=93=9D=20Added=20password=20update=20functionality?= =?UTF-8?q?=20=F0=9F=9A=A7=20Work=20in=20progress=20on=20password=20update?= =?UTF-8?q?=20=E2=9C=A8=20Implemented=20password=20change=20feature=20?= =?UTF-8?q?=F0=9F=93=8C=20Fixed=20styling=20in=20password=20component=20?= =?UTF-8?q?=F0=9F=90=9B=20Fixed=20a=20bug=20in=20password=20validation=20?= =?UTF-8?q?=F0=9F=8E=A8=20Improved=20UI=20for=20password=20update=20?= =?UTF-8?q?=F0=9F=93=A6=20Added=20password=20change=20API=20integration=20?= =?UTF-8?q?=F0=9F=8C=9F=20Exciting=20changes=20in=20password=20component?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../(account-pages)/account-password/page.tsx | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/app/(account-pages)/account-password/page.tsx diff --git a/src/app/(account-pages)/account-password/page.tsx b/src/app/(account-pages)/account-password/page.tsx new file mode 100644 index 0000000..5bc23bb --- /dev/null +++ b/src/app/(account-pages)/account-password/page.tsx @@ -0,0 +1,33 @@ +import React from "react"; +import Label from "@/components/Label"; +import ButtonPrimary from "@/shared/ButtonPrimary"; +import Input from "@/shared/Input"; + +const AccountPass = () => { + return ( +
+ {/* HEADING */} +

Update your password

+
+
+
+ + +
+
+ + +
+
+ + +
+
+ Update password +
+
+
+ ); +}; + +export default AccountPass;