1Password does not respect HTML autocomplete attribute

Options

When creating a password reset form, that has the following fields

  • Email
  • New password
  • New password confirmation

1Password fills the "Email" and "New password" fields as if it was a login form, despite having autocomplete="new-password" on both the password fields. It does suggest a new password when the "New password confirmation" field is focused, but it should also do that when the "New password" field is focused, which it doesn't.

Here is a basic example of a form:

<form method="post">
    <label style="display: block">
        Email
        <input name="email" autocomplete="email">
    </label>

    <label style="display: block">
        New password
        <input type="password" name="password" autocomplete="new-password">
    </label>

    <label style="display: block">
        New password confirmation
        <input type="password" name="password" autocomplete="new-password">
    </label>
</form>

On the bottom of this documentation page it also mentions the autocomplete attribute, so I would expect this to work.


1Password Version: 8.8.0
Extension Version: 2.3.5
OS Version: macOS 12.4
Referrer: forum-search:Browser extension does not respect HTML autocomplete attribute

This discussion has been closed.