ui: possible fix for android bitwarden autofill (#1011)

This commit is contained in:
henrygd
2026-08-15 12:18:26 -04:00
parent b68acea5a8
commit 3337dff64b

View File

@@ -286,7 +286,7 @@ export function UserAuthForm({
{errors?.passwordConfirm && <p className="px-1 text-xs text-red-600">{errors.passwordConfirm}</p>} {errors?.passwordConfirm && <p className="px-1 text-xs text-red-600">{errors.passwordConfirm}</p>}
</div> </div>
)} )}
<div className="sr-only"> <div className="sr-only" aria-hidden="true">
{/* honeypot */} {/* honeypot */}
<label htmlFor="website">Website</label> <label htmlFor="website">Website</label>
<input <input
@@ -294,6 +294,7 @@ export function UserAuthForm({
type="text" type="text"
name="website" name="website"
tabIndex={-1} tabIndex={-1}
readOnly
autoComplete="off" autoComplete="off"
data-1p-ignore data-1p-ignore
data-lpignore="true" data-lpignore="true"