diff --git a/internal/cli/data/universal-login/prompt-screen-settings.json b/internal/cli/data/universal-login/prompt-screen-settings.json index 83e8ec5e..2a4883a5 100644 --- a/internal/cli/data/universal-login/prompt-screen-settings.json +++ b/internal/cli/data/universal-login/prompt-screen-settings.json @@ -1,5 +1,11 @@ { + "_comment1": "The rendering_mode could be either advanced or standard... default_head_tags_disabled is a toggle to override Universal Login default head tags... context_configuration are the set of Context values to make available(Refer docs for the possible values)... head_tags are the array of head tags)..", + "_comment2": "Note1: Inorder to update the rendering_mode to standard, just parse only the rendering_mode field; At standard_mode, we can't update the rest of fields", + "_comment3": "Note2: head_tags must contain at least one script tag", + "_comment4": "Only the declared fields will be updated, Rest stays same.", + "rendering_mode": "advanced", + "default_head_tags": false, "context_configuration": [ "screen.texts" ], diff --git a/internal/cli/universal_login_customize.go b/internal/cli/universal_login_customize.go index 1f1cef85..1eae8cfe 100644 --- a/internal/cli/universal_login_customize.go +++ b/internal/cli/universal_login_customize.go @@ -202,8 +202,7 @@ func customizeUniversalLoginCmd(cli *cli) *cobra.Command { help := fmt.Sprintf( "%s\n%s\n", "standardMode is recommended for customizating consistent, branded experience for users.", - "Alternatively, advancedMode is recommended for full customization/granular control of the login experience", - "and to integrate own component design system", + "Alternatively, advancedMode is recommended for full customization/granular control of the login experience and to integrate own component design system", ) input := prompt.SelectInput("", label, help, []string{standardMode, advancedMode}, standardMode, true)