Add event-admin password reset flow
This commit is contained in:
@@ -40,6 +40,9 @@ const MobileBillingPage = React.lazy(() => import('./mobile/BillingPage'));
|
||||
const MobileSettingsPage = React.lazy(() => import('./mobile/SettingsPage'));
|
||||
const MobileDataExportsPage = React.lazy(() => import('./mobile/DataExportsPage'));
|
||||
const MobileLoginPage = React.lazy(() => import('./mobile/LoginPage'));
|
||||
const MobilePublicHelpPage = React.lazy(() => import('./mobile/PublicHelpPage'));
|
||||
const MobileForgotPasswordPage = React.lazy(() => import('./mobile/ForgotPasswordPage'));
|
||||
const MobileResetPasswordPage = React.lazy(() => import('./mobile/ResetPasswordPage'));
|
||||
const MobileDashboardPage = React.lazy(() => import('./mobile/DashboardPage'));
|
||||
const MobileTasksTabPage = React.lazy(() => import('./mobile/TasksTabPage'));
|
||||
const MobileUploadsTabPage = React.lazy(() => import('./mobile/UploadsTabPage'));
|
||||
@@ -167,6 +170,9 @@ export const router = createBrowserRouter([
|
||||
{ index: true, element: <LandingGate /> },
|
||||
{ path: 'login', element: <MobileLoginPage /> },
|
||||
{ path: 'mobile/login', element: <MobileLoginPage /> },
|
||||
{ path: 'help', element: <MobilePublicHelpPage /> },
|
||||
{ path: 'forgot-password', element: <MobileForgotPasswordPage /> },
|
||||
{ path: 'reset-password/:token', element: <MobileResetPasswordPage /> },
|
||||
{ path: 'start', element: <LoginStartPage /> },
|
||||
{ path: 'logout', element: <LogoutPage /> },
|
||||
{ path: 'auth/callback', element: <AuthCallbackPage /> },
|
||||
|
||||
Reference in New Issue
Block a user