Following on from the points I raised in my last post and for anyone with similar issues. I was able to hide a few items via CSS. This also updated the text to direct the user as to why we are asking for a username.
`.SignUpModal-logIn {
display: none;
}
.LogInModal-forgotPassword {
display: none;
}
.LogInModal-signUp {
display: none;
}
.item-signUp {
display: none !important;
}
#modal > div > .SignUpModal > div > form > div.Modal-header > h3:after {
content: ' what username do you want to use in discussions?';
visibility: visible;
}`
Other than the log-out link not redirecting to the IdP logout configured in the metadata the extension is working great. Is this log-out behavior considered a bug?
I'd also love to see the ability to call /auth/saml/login from my own website, and have the user automatically logged in (since they will already be logged in when they click the link) without all the popups. Whilst this method appears to work and I get the login from my Idp in the main window, we end up at /auth/saml/acs which is a blank page that appears to be hardcoded to work in the popup via a script.
Thanks to @askvortsov for your continuing effort on this.