Can request account creation from web app
This commit is contained in:
@ -9,6 +9,7 @@ import { useAtom } from "jotai";
|
||||
import { BaseAuthenticatedPage } from "./widgets/BaseAuthenticatedPage";
|
||||
import { PasswordForgottenRoute } from "./routes/auth/PasswordForgottenRoute";
|
||||
import { ResetPasswordRoute } from "./routes/auth/ResetPasswordRoute";
|
||||
import { NewAccountRoute } from "./routes/auth/NewAccountRoute";
|
||||
|
||||
/**
|
||||
* Core app
|
||||
@ -24,6 +25,7 @@ function App() {
|
||||
<Route path="*" element={<BaseLoginPage />}>
|
||||
<Route path="" element={<LoginRoute />} />
|
||||
<Route path="oidc_cb" element={<OIDCCbRoute />} />
|
||||
<Route path="new-account" element={<NewAccountRoute />} />
|
||||
<Route
|
||||
path="password_forgotten"
|
||||
element={<PasswordForgottenRoute />}
|
||||
|
Reference in New Issue
Block a user