import { IonContent, IonButton, IonToast } from '@ionic/react'; import { lockOpenOutline } from 'ionicons/icons'; import React, { useState } from 'react'; import InputWidget from '../../components/input/InputWidget'; import styles from './EnterOTP.module.scss'; import loginStyles from '../../commonStyles/loginFlow/LoginStyles.module.scss'; type Props = { }; const EnterOTPView: React.FC = () => { const [successState, setSuccessState] = useState(false); return(
upfold image

Enter New Password

Your password must be at least 6 characters.

(i) Do not enter any of the old passwords, system will reject the repeated passwords.

setSuccessState(true)}> Change setSuccessState(false)} header= 'Success!' message="You have successfully changed your password. Please use your newly set password" // duration={2000} cssClass={loginStyles.successToast} />
) } export default EnterOTPView;