- From: Matthew Miller via GitHub <sysbot+gh@w3.org>
- Date: Wed, 11 Sep 2024 21:42:37 +0000
- To: public-webauthn@w3.org
@kenrb I took @pascoej's suggestion as a new way to set up a `<form>` along the lines of how you trigger conditional UI: ```html <!-- Regular Conditional UI --> <form action=""> <input type="email" name="email" id="email" /> <input type="password" name="password" id="password" autocomplete="current-password webauthn"> </form> ``` But the presence of `type="hidden"` input with `autocomplete="... webauthn"` would trigger the "ambient" UI instead: ```html <!-- New "Ambient" UI --> <form action=""> <input type="email" name="email" id="email" /> <input type="password" name="password" id="password" autocomplete="current-password"> <input type="hidden" autocomplete="webauthn"> </form> ``` -- GitHub Notification of comment by MasterKale Please view or discuss this issue at https://github.com/w3c/webauthn/issues/2144#issuecomment-2344754697 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 11 September 2024 21:42:38 UTC