diff --git a/src/pages/User/ChangePasswordPage/ResetPasswordSuccess.js b/src/pages/User/ChangePasswordPage/ResetPasswordSuccess.js
deleted file mode 100644
index 2b81f48..0000000
--- a/src/pages/User/ChangePasswordPage/ResetPasswordSuccess.js
+++ /dev/null
@@ -1,122 +0,0 @@
-// import { useFormik } from 'formik';
-// import * as yup from 'yup';
-import * as React from "react";
-// import * as HttpUtils from "utils/HttpUtils";
-// import * as UrlUtils from "utils/ApiPathConst";
-// import { useNavigate } from "react-router-dom";
-// import { useDispatch } from "react-redux";
-// import { handleLogoutFunction, handleLogin} from 'auth/index';
-// import useJwt from "auth/jwt/useJwt";
-
-import {
- Grid,
- Typography,
- Button,
- // RadioGroup,
- // Dialog, DialogTitle, DialogContent, DialogActions,
- Stack,
- // InputLabel,
- // OutlinedInput,
- // FormHelperText,
- // TextField,
- // IconButton, InputAdornment,
- // Box,
- // FormControl
-} from '@mui/material';
-import Loadable from 'components/Loadable';
-const LoadingComponent = Loadable(React.lazy(() => import('pages/extra-pages/LoadingComponent')));
-import titleBackgroundImg from 'assets/images/dashboard/gazette-bar.png'
-// import ForwardIcon from '@mui/icons-material/Forward';
-import MainCard from 'components/MainCard';
-// import {PNSPS_LONG_BUTTON_THEME} from "themes/buttonConst";
-// import {ThemeProvider} from "@emotion/react";
-import {FormattedMessage,
- // useIntl
-} from "react-intl";
-// import { EyeInvisibleOutlined, EyeOutlined } from '@ant-design/icons';
-// import axios from 'axios';
-import {
- // useParams,
- Link
-} from 'react-router-dom';
-import CheckCircleOutlineIcon from '@mui/icons-material/CheckCircleOutline';
-
-// import LocaleContext from "components/I18nProvider";
-
-// ==============================|| DASHBOARD - DEFAULT ||============================== //
-
-const ResetPasswordSuccess = () => {
-
- const [isLoading, setLoding] = React.useState(true);
-
- React.useEffect(() => {
- setLoding(false)
- }, []);
-
- const BackgroundHead = {
- backgroundImage: `url(${titleBackgroundImg})`,
- width: 'auto',
- height: 'auto',
- backgroundSize: 'contain',
- backgroundRepeat: 'no-repeat',
- backgroundColor: '#0C489E',
- backgroundPosition: 'right'
- }
-
- return (
- isLoading ?
-
-
-
-
-
- :
-
-
-
-
-
-
-
-
-
-
-
- *': {
- flexGrow: 1,
- flexBasis: '50%'
- }
- }}
- content={false}
- border={false}
- boxShadow
- >
-
-
- {/* */}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-};
-
-export default ResetPasswordSuccess;
\ No newline at end of file