diff --git a/v2/emailpassword/common-customizations/embed-sign-in-up-form.mdx b/v2/emailpassword/common-customizations/embed-sign-in-up-form.mdx index 031f1c204..172a3dcf0 100644 --- a/v2/emailpassword/common-customizations/embed-sign-in-up-form.mdx +++ b/v2/emailpassword/common-customizations/embed-sign-in-up-form.mdx @@ -249,7 +249,10 @@ SuperTokens.init({ }, recipeList: [ EmailPassword.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -322,7 +325,10 @@ SuperTokens.init({ }, recipeList: [ EmailPassword.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -397,7 +403,10 @@ SuperTokens.init({ }, recipeList: [ EmailPassword.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -486,7 +495,10 @@ SuperTokens.init({ }, recipeList: [ EmailPassword.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -572,7 +584,10 @@ SuperTokens.init({ }, recipeList: [ EmailPassword.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -660,7 +675,10 @@ SuperTokens.init({ }, recipeList: [ EmailPassword.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], diff --git a/v2/passwordless/common-customizations/embed-sign-in-up-form.mdx b/v2/passwordless/common-customizations/embed-sign-in-up-form.mdx index 321199097..6d8d7ce93 100644 --- a/v2/passwordless/common-customizations/embed-sign-in-up-form.mdx +++ b/v2/passwordless/common-customizations/embed-sign-in-up-form.mdx @@ -256,6 +256,10 @@ SuperTokens.init({ recipeList: [ Passwordless.init({ contactMethod: "EMAIL", // This example will work with any contactMethod + signInUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, // ... }), // ... @@ -330,6 +334,10 @@ SuperTokens.init({ recipeList: [ Passwordless.init({ contactMethod: "EMAIL", // This example will work with any contactMethod + signInUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, // ... }), // ... @@ -406,6 +414,10 @@ SuperTokens.init({ recipeList: [ Passwordless.init({ contactMethod: "EMAIL", // This example will work with any contactMethod + signInUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, // ... }), // ... @@ -496,6 +508,10 @@ SuperTokens.init({ recipeList: [ Passwordless.init({ contactMethod: "EMAIL", // This example will work with any contactMethod + signInUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, // ... }), // ... @@ -583,6 +599,10 @@ SuperTokens.init({ recipeList: [ Passwordless.init({ contactMethod: "EMAIL", // This example will work with any contactMethod + signInUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, // ... }), // ... @@ -672,6 +692,10 @@ SuperTokens.init({ recipeList: [ Passwordless.init({ contactMethod: "EMAIL", // This example will work with any contactMethod + signInUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, // ... }), // ... diff --git a/v2/thirdparty/common-customizations/embed-sign-in-up-form.mdx b/v2/thirdparty/common-customizations/embed-sign-in-up-form.mdx index 4622dc2f9..50cc59165 100644 --- a/v2/thirdparty/common-customizations/embed-sign-in-up-form.mdx +++ b/v2/thirdparty/common-customizations/embed-sign-in-up-form.mdx @@ -252,7 +252,10 @@ SuperTokens.init({ }, recipeList: [ ThirdParty.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -325,7 +328,10 @@ SuperTokens.init({ }, recipeList: [ ThirdParty.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -400,7 +406,10 @@ SuperTokens.init({ }, recipeList: [ ThirdParty.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -489,7 +498,10 @@ SuperTokens.init({ }, recipeList: [ ThirdParty.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -575,7 +587,10 @@ SuperTokens.init({ }, recipeList: [ ThirdParty.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -663,7 +678,10 @@ SuperTokens.init({ }, recipeList: [ ThirdParty.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], diff --git a/v2/thirdpartyemailpassword/common-customizations/embed-sign-in-up-form.mdx b/v2/thirdpartyemailpassword/common-customizations/embed-sign-in-up-form.mdx index ff00f427d..a2a87b938 100644 --- a/v2/thirdpartyemailpassword/common-customizations/embed-sign-in-up-form.mdx +++ b/v2/thirdpartyemailpassword/common-customizations/embed-sign-in-up-form.mdx @@ -252,7 +252,10 @@ SuperTokens.init({ }, recipeList: [ ThirdPartyEmailPassword.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -325,7 +328,10 @@ SuperTokens.init({ }, recipeList: [ ThirdPartyEmailPassword.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -400,7 +406,10 @@ SuperTokens.init({ }, recipeList: [ ThirdPartyEmailPassword.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -489,7 +498,10 @@ SuperTokens.init({ }, recipeList: [ ThirdPartyEmailPassword.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -575,7 +587,10 @@ SuperTokens.init({ }, recipeList: [ ThirdPartyEmailPassword.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], @@ -663,7 +678,10 @@ SuperTokens.init({ }, recipeList: [ ThirdPartyEmailPassword.init({ - // ... + signInAndUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, }), // ... ], diff --git a/v2/thirdpartypasswordless/common-customizations/embed-sign-in-up-form.mdx b/v2/thirdpartypasswordless/common-customizations/embed-sign-in-up-form.mdx index aa32315ff..bc2a293aa 100644 --- a/v2/thirdpartypasswordless/common-customizations/embed-sign-in-up-form.mdx +++ b/v2/thirdpartypasswordless/common-customizations/embed-sign-in-up-form.mdx @@ -256,6 +256,10 @@ SuperTokens.init({ recipeList: [ ThirdPartyPasswordless.init({ contactMethod: "EMAIL", // This example will work with any contactMethod + signInUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, // ... }), // ... @@ -330,6 +334,10 @@ SuperTokens.init({ recipeList: [ ThirdPartyPasswordless.init({ contactMethod: "EMAIL", // This example will work with any contactMethod + signInUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, // ... }), // ... @@ -406,6 +414,10 @@ SuperTokens.init({ recipeList: [ ThirdPartyPasswordless.init({ contactMethod: "EMAIL", // This example will work with any contactMethod + signInUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, // ... }), // ... @@ -496,6 +508,10 @@ SuperTokens.init({ recipeList: [ ThirdPartyPasswordless.init({ contactMethod: "EMAIL", // This example will work with any contactMethod + signInUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, // ... }), // ... @@ -583,6 +599,10 @@ SuperTokens.init({ recipeList: [ ThirdPartyPasswordless.init({ contactMethod: "EMAIL", // This example will work with any contactMethod + signInUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, // ... }), // ... @@ -672,6 +692,10 @@ SuperTokens.init({ recipeList: [ ThirdPartyPasswordless.init({ contactMethod: "EMAIL", // This example will work with any contactMethod + signInUpFeature: { + // highlight-next-line + disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page. + }, // ... }), // ...