<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M74D8PB" height="0" width="0" style="display:none;visibility:hidden">
Loading
Skip to NavigationSkip to Main Content
0D51Y00007QaiaHSAROkta Classic EngineSingle Sign-OnAnswered2024-04-15T09:30:27.000Z2020-01-02T14:27:11.000Z2020-01-07T00:08:49.000Z

g7lqm (g7lqm) asked a question.

Is there a way to customize the OKTA login page to have a 'Show/Preview Password' button?

I would like to know if there is a way to configure or add a 'Show/Preview Password' button to the OKTA login page so that users can make sure they typed in the correct password before they hit enter. I realize this will make the login less secure, but I am simply wondering if this is even possible to do. I have seen a widget on GitHub (https://github.com/okta/okta-signin-widget*passwordrevealed), but this looks fairly complex to setup and I'm looking for something simpler. Any ideas on how we could add this function to the sign in page of OKTA?


  • bc221 (bc221)

    Actually It's very simple. just add below feature in your custom sign-in widget-

    features: {

                 showPasswordToggleOnSignInPage: true

                }

     

    // Basic example 

     

    var config = {

    baseUrl: 'https://{yourOktaDomain}',

    logo: '/path/to/logo.png',

    helpSupportNumber: '(123) 456-7890',

    language: 'en',

    i18n: {

    en: {

    'primaryauth.title': 'Sign in to Acme'

      }

    },

    helpLinks: {

    help: 'https://acme.com/help'

    },

    features: {

    showPasswordToggleOnSignInPage: true

    }

    };

     

    var signIn = new OktaSignIn(config);

    Expand Post
  • g7lqm (g7lqm)

    I was actually looking for a solution that didn't involve using the widget.

This question is closed.
Loading
Is there a way to customize the OKTA login page to have a 'Show/Preview Password' button?