import { IonContent, IonPage, IonButton } from '@ionic/react'; import { mailOpenOutline } from 'ionicons/icons'; import React from 'react'; import InputWidget from '../../components/input/InputWidget'; import styles from './ForgotPassword.module.scss'; import loginStyles from '../../commonStyles/loginFlow/LoginStyles.module.scss'; type Props = { changeStep:any, forgotPasswordStep:string }; const ForgotPasswordPage: React.FC = (props) => { return (
upfold image

Forgot your Password?

Lorem Ipsum is simply dummy text of the printing and typesetting

Enter your registered email address to reset password through the OTP
props.changeStep('OTP')} expand='block'> Send OTP
) } export default ForgotPasswordPage;