oktaokta-signin-widget

Okta sign-in widget - password requirements not being displayed as bullet list


My understanding is that Okta would display the password complexity text as a bullet list instead of a comma-separated list.

Is the bullet list the default styling or it should be added manually?

Packages versions:

(Sign-In Widget's CSS is being imported)

Actual outcome

expected outcome


Solution

  • For future reference, this issue is solved by adding showPasswordRequirementsAsHtmlList: true to the features property in the config.

    new OktaSignIn({
        ...config,
        features: {
            showPasswordRequirementsAsHtmlList: true,
        },
    });