mirror of
https://github.com/Mastermindzh/react-starter-kit.git
synced 2025-08-23 17:44:52 +02:00
Added react-oidc (use demo/demo)
Added an example of an authentication protected page (tenders) Added an example with the built in proxy (to combat CORS) (tendersguru)
This commit is contained in:
9
src/infrastructure/sso/overrides/Authenticating.tsx
Normal file
9
src/infrastructure/sso/overrides/Authenticating.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { FunctionComponent } from "react";
|
||||
import { SSOResult } from "../models/SSOResult";
|
||||
|
||||
export const Authenticating: FunctionComponent<SSOResult> = ({ configurationName }) => (
|
||||
<>
|
||||
<h1>Authentication in progress for {configurationName}</h1>
|
||||
<p>You will be redirected to the login page.</p>
|
||||
</>
|
||||
);
|
Reference in New Issue
Block a user