Closed mildsunrise closed 6 months ago
I know it's a small detail, but I think it's important to show it since it allows you to verify you're not typing your SSO credentials (for the whole organization) into a page that isn't the SSO portal (or isn't HTTPS).
Won't the webview show an error if it redirects from HTTPS → insecure HTTP, though?
Related: https://github.com/react-native-webview/react-native-webview/issues/3086 and https://stackoverflow.com/questions/6909351/how-can-i-display-an-address-bar-with-a-webview
this inserts the origin of the page in the browser's window
Seems fine, but do you think that displaying a grayed-out address bar widget would be clearer? Or perhaps putting a locked/unlocked icon in somewhere?
urip = urlparse(uri)
origin = '%s %s' % ('🔒' if urip.scheme == 'https' else '🔓', urip.netloc)
self.window.set_title("SAML Login (%s)" % origin)
those icons are identical. Would be better to have an icon that looks different from the lock. 🔴 ? or 🚫 ?
Seems fine, but do you think that displaying a grayed-out address bar widget would be clearer?
it would be, but I don't have bandwidth right now for that much bulkier change. I'd suggest putting it in the title for now, and later we can upgrade it to an address bar.
Or perhaps putting a locked/unlocked icon in somewhere?
Showing an emoji seems like a very good idea, since the "s" in the protocol is hard to miss. I'll implement that.
But I agree with @pboushy that those two emojis are nearly identical... I'll put 🔒 and 🔴
this inserts the origin of the page in the browser's window, so that instead of
it shows
or whatever.
I know it's a small detail, but I think it's important to show it since it allows you to verify you're not typing your SSO credentials (for the whole organization) into a page that isn't the SSO portal (or isn't HTTPS). Everything shown inside the window is within the page's control, but the origin is not.