diff --git a/src/core/components/Profile/ChangePass/Form.jsx b/src/core/components/Profile/ChangePass/Form.jsx
new file mode 100644
index 0000000..0307f8c
--- /dev/null
+++ b/src/core/components/Profile/ChangePass/Form.jsx
@@ -0,0 +1,65 @@
+"use client";
+
+import { Chip, Divider, Grid, TextField } from "@mui/material";
+import StyledForm from "@/core/components/StyledForm";
+import { useForm } from "react-hook-form";
+
+const Form = () => {
+ const defaultValues = {
+ old_password: "",
+ new_password: "",
+ repeat_new_password: "",
+ };
+
+ const {
+ control,
+ watch,
+ register,
+ handleSubmit,
+ setValue,
+ formState: { isSubmitting },
+ } = useForm({ defaultValues: defaultValues });
+
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+};
+export default Form;
\ No newline at end of file
diff --git a/src/core/components/Profile/ChangePass/index.jsx b/src/core/components/Profile/ChangePass/index.jsx
index 31df662..10d4d78 100644
--- a/src/core/components/Profile/ChangePass/index.jsx
+++ b/src/core/components/Profile/ChangePass/index.jsx
@@ -1,46 +1,27 @@
"use client";
-import {
- Box,
- Button,
- Dialog,
- DialogActions,
- DialogContent,
- DialogTitle,
- IconButton,
- useMediaQuery,
-} from "@mui/material";
+import { Button, Dialog, DialogActions, DialogContent } from "@mui/material";
import { useTheme } from "@mui/material/styles";
-import CloseIcon from "@mui/icons-material/Close";
+import Form from "./Form";
const ChangePass = ({ open, setOpen }) => {
const theme = useTheme();
- const fullScreen = useMediaQuery(theme.breakpoints.down("sm"));
return (
-