import { Link } from 'react-router-dom'; // material-ui import { useTheme } from '@mui/material/styles'; import { Divider, Grid, Typography, useMediaQuery } from '@mui/material'; // project imports import AuthWrapper1 from '../AuthWrapper1'; import AuthCardWrapper from '../AuthCardWrapper'; import Logo from 'ui-component/Logo'; import AuthForgotPassword from '../auth-forms/AuthForgotPassword'; import AuthFooter from 'ui-component/cards/AuthFooter'; import useAuth from 'hooks/useAuth'; // ============================|| AUTH3 - FORGOT PASSWORD ||============================ // const ForgotPassword = () => { const theme = useTheme(); const { isLoggedIn } = useAuth(); const matchDownSM = useMediaQuery(theme.breakpoints.down('md')); return ( Forgot password? Enter your email address below and we'll send you password reset OTP. Already have an account? ); }; export default ForgotPassword;