revamp template
This commit is contained in:
31
src/auth/AuthPage.tsx
Normal file
31
src/auth/AuthPage.tsx
Normal file
@ -0,0 +1,31 @@
|
||||
import { Navigate, Route, Routes } from 'react-router';
|
||||
import {
|
||||
Login,
|
||||
ResetPassword,
|
||||
ResetPasswordChange,
|
||||
ResetPasswordChanged,
|
||||
ResetPasswordCheckEmail,
|
||||
ResetPasswordEnterEmail,
|
||||
TwoFactorAuth
|
||||
} from './pages/jwt';
|
||||
import { AuthBrandedLayout } from '@/layouts/auth-branded';
|
||||
import { CheckEmail } from '@/auth/pages/jwt';
|
||||
|
||||
const AuthPage = () => (
|
||||
<Routes>
|
||||
<Route element={<AuthBrandedLayout />}>
|
||||
<Route index element={<Login />} />
|
||||
<Route path="/login" element={<Login />} />
|
||||
<Route path="/2fa" element={<TwoFactorAuth />} />
|
||||
<Route path="/check-email" element={<CheckEmail />} />
|
||||
<Route path="/reset-password" element={<ResetPassword />} />
|
||||
<Route path="/reset-password/enter-email" element={<ResetPasswordEnterEmail />} />
|
||||
<Route path="/reset-password/check-email" element={<ResetPasswordCheckEmail />} />
|
||||
<Route path="/reset-password/:id" element={<ResetPasswordChange />} />
|
||||
<Route path="/reset-password/changed" element={<ResetPasswordChanged />} />
|
||||
<Route path="*" element={<Navigate to="/error/404" />} />
|
||||
</Route>
|
||||
</Routes>
|
||||
);
|
||||
|
||||
export { AuthPage };
|
||||
Reference in New Issue
Block a user