Why is the http auth UI so poor in browsers? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T11:16:08Z http://stackoverflow.com/feeds/question/235327 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/235327/why-is-the-http-auth-ui-so-poor-in-browsers 8 Why is the http auth UI so poor in browsers? Egon 2008-10-24T21:28:40Z 2008-10-28T01:30:35Z <p>Why isn't there a logout button? Why no list of "websites you're logged into"? Is it because of some issue with the HTTP specs?</p> <p>Life would be much easier for web developers if they could actually rely on HTTP auth ...</p> http://stackoverflow.com/questions/235327/why-is-the-http-auth-ui-so-poor-in-browsers/235333#235333 9 Answer by Gulzar for Why is the http auth UI so poor in browsers? Gulzar 2008-10-24T21:31:59Z 2008-10-28T01:30:35Z <p>As far as HTTP is concerned, it is <a href="http://www.webopedia.com/TERM/H/HTTP.html" rel="nofollow">stateless</a>. One of the main reasons why Internet is scalable.</p> http://stackoverflow.com/questions/235327/why-is-the-http-auth-ui-so-poor-in-browsers/235405#235405 2 Answer by hayalci for Why is the http auth UI so poor in browsers? hayalci 2008-10-24T22:04:30Z 2008-10-24T22:04:30Z <p>Have you entered a bug report for major browsers ? (At least, ones with bug trackers, Firefox, Chrome (Chromium) etc.</p> <p>List of open HTTP Auth sessions would be useful.</p> http://stackoverflow.com/questions/235327/why-is-the-http-auth-ui-so-poor-in-browsers/235452#235452 0 Answer by Sunny for Why is the http auth UI so poor in browsers? Sunny 2008-10-24T22:17:09Z 2008-10-24T22:17:09Z <p>Because it's not the browser that "knows" it's logged in. It's the server which authenticates the browser on every request. Every server can have different authentication mechanism - using different names and content for the authentication cookies, basic authentication, etc.</p> http://stackoverflow.com/questions/235327/why-is-the-http-auth-ui-so-poor-in-browsers/235457#235457 3 Answer by bobince for Why is the http auth UI so poor in browsers? bobince 2008-10-24T22:20:00Z 2008-10-24T22:20:00Z <p>No technical reason. I suppose if anything, the auth UI is neglected because fewer and fewer web sites are still using HTTP Basic Authentication, trending more towards various cookie-related login schemes... precisely because the auth UI is so poor!</p> <p>One could probably hack together a Firefox add-on to do it quite easily, which would be the quickest fix. (And the same goes for the other question with the poor file upload UI too.) I'd use it!</p>