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;