Bug 1433754 Comment 4 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

They are using separate <form>s for the username and password fields which is very unusual.

I would say this is more of a website problem than a Firefox problem as I've never seen another website do this before.

When I test the password field is filled fine, just not the username field. This makes sense since we don't support filling just the username with no password.

Julien, I think the best option at this time would be to make a recipe for this in https://searchfox.org/mozilla-central/source/toolkit/components/passwordmgr/content/recipes.json

You probably need one like:
```js
    {
      "description": "…",
      "hosts": ["mabanque.fortuneo.fr"],
      "pathRegex": "/identification.jsp$",
      "usernameSelector": "input[name='LOGIN']"
    }
```

I can review if you test it.
They are using separate <form>s for the username and password fields which is very unusual.

I would say this is more of a website problem than a Firefox problem as I've never seen another website do this before.

When I test the password field is filled fine, just not the username field. This makes sense since we don't support filling just the username with no password.

Julien, I think the best option at this time would be to make a recipe for this in https://searchfox.org/mozilla-central/source/toolkit/components/passwordmgr/content/recipes.json

You probably need one like:
```js
    {
      "description": "…",
      "hosts": ["mabanque.fortuneo.fr"],
      "pathRegex": "\/identification.jsp$",
      "usernameSelector": "input[name='LOGIN']"
    }
```

I can review if you test it.
They are using separate <form>s for the username and password fields which is very unusual.

I would say this is more of a website problem than a Firefox problem as I've never seen another website do this before.

When I test the password field is filled fine, just not the username field. This makes sense since we don't support filling just the username with no password.

Julien, I think the best option at this time would be to make a recipe for this in https://searchfox.org/mozilla-central/source/toolkit/components/passwordmgr/content/recipes.json

You probably need one like:
```js
    {
      "description": "…",
      "hosts": ["mabanque.fortuneo.fr"],
      "pathRegex": "\/identification\.jsp$",
      "usernameSelector": "input[name='LOGIN']"
    }
```

I can review if you test it.

Back to Bug 1433754 Comment 4