feat: otp resend timer and logic added

This commit is contained in:
مهرزاد قدرتی
2025-07-28 13:02:24 +03:30
parent 45371337b7
commit 3f7242742e
8 changed files with 143 additions and 104 deletions

View File

@@ -1,7 +1,6 @@
import { FlexBox } from '@/components/components/common/FlexBox';
import Logo from '@/components/Logo';
import { Paper } from '@mui/material';
import { SmsOtpForm } from '../components/SmsOtpForm';
import { useState } from 'react';
import { AuthenticationContainer } from '../components/AuthenticationContainer';
@@ -17,16 +16,7 @@ export function AuthenticationPage() {
}}
>
<Logo />
<Paper
elevation={0}
sx={{
borderRadius: 'theme.xl',
p: 6,
width: '34.5rem',
}}
>
<AuthenticationContainer />
</Paper>
<AuthenticationContainer />
</FlexBox>
);
}