@abole @andrea
I am using okta-signin-widget with PKCE flow like below -
import OktaSignIn from '@okta/okta-signin-widget'
var signIn = new OktaSignIn(
{
issuer: 'https://{yourOktaDomain}/oauth2/default',
clientId: '{{clientId of your OIDC app}}',
redirectUri: '{{redirectUri configured in OIDC app}}',
baseUrl: issuer.split('/oauth2')[0],
features: {
showPasswordToggleOnSignInPage: true,
registration: true,
idpDiscovery: true
},
idpDiscovery: {
requestContext: window.location.href
},
....
.....
}
);
My requirement is to show the “Back to sign in” link on custom Okta Sigin Widget on below screen -
.Once we click on “Back to sign in” link then it should navigate to “Email Screen”. Check below Screenshot for the same -
I am gone through documentation and okta configuration options but didnt find anything related to it.
Any idea on this?
Thanks