This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan
<p>Ricky Mondello over on the Safari team just recently shared a note about how Twitter is using the ./well-known/change-password spec.</p>
<blockquote>
<p>I just noticed that Twitter has adopted the Well-Known URL for Changing Passwords! Is anyone aware of other sites that have adopted it?</p>
<p>Twitter's implementation: <a href="https://twitter.com/.well-known/change-password">https://twitter.com/.well-known/change-password</a>
Github's: <a href="https://github.com/.well-known/change-password">https://github.com/.well-known/change-password</a>
Specification :https://github.com/WICG/change-password-url</p>
</blockquote>
<p><a href="https://twitter.com/rmondello/status/1090702498220961793">Read full post</a>.</p>
<p>The feature completely passed me by but it is a neat idea: given a file in a well-known location, can the browser offer a UI to the user that allows them to quickly reset their password without having to navigate the sites complex UI..</p>
<p>The spec is deceptively simple: the well-known file simply contains the URL to direct the user to when they want to perform the action. This lead me in to thinking, can we offer more of these features:</p>
<ul>
<li>A well known location for GDPR-based consent models (cookie consent) - site owners could offer a link to the page where a user can manage and potentially revoke all cookies and other data consent items.</li>
<li>A well known location for browser permission management - site owners could offer a quick place for users to be able to revoke permissions to things like geo-location, notifications and other primitives.</li>
<li>A well known path for account deletion and changes</li>
<li>A well known path for mailing list subscription management</li>
</ul>
<p>The list goes on.... I really like the idea for simple redirect files to help users to discover common user actions, and for a way for the browser to surface it up.</p>
<p><em>Update:</em> I added an <a href="https://bugs.chromium.org/p/chromium/issues/detail?id=927473">issue to Chrome to see if we can get a similar implementation</a>.</p>
This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan