feat: forget password steps and pages added

This commit is contained in:
2025-08-08 00:46:05 +03:30
parent 9191ea31fa
commit a2afdddf04
14 changed files with 665 additions and 4 deletions

View File

@@ -3,6 +3,7 @@ import Logo from '@/components/Logo';
import { Paper } from '@mui/material';
import { useState } from 'react';
import { AuthenticationSteps } from '../components/AuthenticationSteps/AuthenticationSteps';
import { ForgetPasswordContainer } from '../components/ForgetPassword/ForgetPasswordContainer';
export function AuthenticationPage() {
return (
@@ -16,7 +17,7 @@ export function AuthenticationPage() {
}}
>
<Logo />
<AuthenticationSteps />
<ForgetPasswordContainer />
</FlexBox>
);
}