mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 19:47:34 +00:00
fix: 405
This commit is contained in:
@@ -157,17 +157,20 @@ export default async function Page(props: {
|
|||||||
></ChooseAuthenticatorToSetup>
|
></ChooseAuthenticatorToSetup>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div className="py-3 flex flex-col">
|
|
||||||
<p className="ztdl-p text-center">{t("linkWithIDP")}</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{loginSettings?.allowExternalIdp && identityProviders && (
|
{loginSettings?.allowExternalIdp && identityProviders && (
|
||||||
<SignInWithIdp
|
<>
|
||||||
identityProviders={identityProviders}
|
{identityProviders.length && (
|
||||||
requestId={requestId}
|
<div className="py-3 flex flex-col">
|
||||||
organization={sessionWithData.factors?.user?.organizationId}
|
<p className="ztdl-p text-center">{t("linkWithIDP")}</p>
|
||||||
linkOnly={true} // tell the callback function to just link the IDP and not login, to get an error when user is already available
|
</div>
|
||||||
></SignInWithIdp>
|
)}
|
||||||
|
<SignInWithIdp
|
||||||
|
identityProviders={identityProviders}
|
||||||
|
requestId={requestId}
|
||||||
|
organization={sessionWithData.factors?.user?.organizationId}
|
||||||
|
linkOnly={true} // tell the callback function to just link the IDP and not login, to get an error when user is already available
|
||||||
|
></SignInWithIdp>
|
||||||
|
</>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div className="mt-8 flex w-full flex-row items-center">
|
<div className="mt-8 flex w-full flex-row items-center">
|
||||||
|
Reference in New Issue
Block a user