forgot password

This commit is contained in:
hamid zarghami
2026-02-07 12:01:28 +03:30
parent c9c42cf638
commit 433bd65cb0
9 changed files with 250 additions and 6 deletions
+6 -3
View File
@@ -11,6 +11,9 @@ import { isEmail } from '../../../config/func'
import { useCheckHasAccount, useLoginWithOtp } from '../hooks/useAuthData'
import { ErrorType } from '../../../helpers/types'
import { toast } from '../../../components/Toast'
import { ArrowLeft } from 'iconsax-react'
import { Link } from 'react-router-dom'
import { Pages } from '../../../config/Pages'
const LoginStep1: FC = () => {
const { t } = useTranslation('global')
@@ -100,12 +103,12 @@ const LoginStep1: FC = () => {
</Link>
</div> */}
{/* <a href='https://accounts.danakcorp.com' target='_blank' className='mt-6 flex gap-1 text-sm justify-center text-description'>
<Link to={Pages.auth.forgotPassword} className='mt-6 flex gap-1 text-sm justify-center text-description'>
<div>
{t('auth.old_version')}
{t('auth.forgot_password')}
</div>
<ArrowLeft size={20} color='black' />
</a> */}
</Link>
</div>
)
}