fix design register + and link to old version

This commit is contained in:
hamid zarghami
2025-04-23 10:32:54 +03:30
parent 7b6b38ab3a
commit 0226a4a992
3 changed files with 13 additions and 3 deletions
+8
View File
@@ -13,6 +13,7 @@ import { isEmail } from '../../../config/func'
import { useCheckHasAccount, useLoginWithOtp } from '../hooks/useAuthData'
import { toast } from 'react-toastify'
import { ErrorType } from '../../../helpers/types'
import { ArrowLeft } from 'iconsax-react'
const LoginStep1: FC = () => {
@@ -102,6 +103,13 @@ const LoginStep1: FC = () => {
<div>{t('auth.register')}</div>
</Link>
</div>
<a href='https://accounts.danakcorp.com' target='_blank' className='mt-4 flex gap-1 text-sm justify-center text-description'>
<div>
{t('auth.old_version')}
</div>
<ArrowLeft size={20} color='black' />
</a>
</div>
)
}