I modified my hosted lock screen to simply print out the extra params I am trying to pass to it.
console.log('allow_login: ' + config.extraParams.allow_login); console.log('allow_signup: ' + config.extraParams.allow_signup); console.log('login_hint: ' + config.extraParams.login_hint);
I have appended &allow_login=true&allow_signup=true&login_hint=test
to the end of the URL.
However they always print ‘undefined’, so somehow they are not getting through.
allow_login and allow_signup were recommended to me in a support ticket. login_hint is a OIDC accepted parameter so I would think atleast one of them would work.