Conflict between Bitwarden and CodeProject Pages
-
Team, I had been observing that BitWarden browser extension seems to be having problems in prefilling the credentials for Codeproject website. 1) The top logon auto-closes when Bitwarden fills the credentials. 2) In the login page since both signup and login panels are side-by-side, Bitwarden ends up filling both the fields.
-
Team, I had been observing that BitWarden browser extension seems to be having problems in prefilling the credentials for Codeproject website. 1) The top logon auto-closes when Bitwarden fills the credentials. 2) In the login page since both signup and login panels are side-by-side, Bitwarden ends up filling both the fields.
That sounds like something you should be reporting to Bitwarden as a bug.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
Team, I had been observing that BitWarden browser extension seems to be having problems in prefilling the credentials for Codeproject website. 1) The top logon auto-closes when Bitwarden fills the credentials. 2) In the login page since both signup and login panels are side-by-side, Bitwarden ends up filling both the fields.
Unfortunately we can't support third party browser extensions. Having the tail wag the dog is a bad idea.
cheers Chris Maunder
-
Unfortunately we can't support third party browser extensions. Having the tail wag the dog is a bad idea.
cheers Chris Maunder
Quote:
Unfortunately we can't support third party browser extensions
No, nobody expect that. But following the style guide to separate login/resgister -like about 99% ?- are doing will help to keep away from such simple problems. Of course it means some work for you ;)
-
Quote:
Unfortunately we can't support third party browser extensions
No, nobody expect that. But following the style guide to separate login/resgister -like about 99% ?- are doing will help to keep away from such simple problems. Of course it means some work for you ;)
There is/was/probably still is a small redesign in the works that will fix the dropdown issue. The other issue where both fields are filled in? I could work around it but...
cheers Chris Maunder
-
There is/was/probably still is a small redesign in the works that will fix the dropdown issue. The other issue where both fields are filled in? I could work around it but...
cheers Chris Maunder
There's one small tweak I'd suggest: currently, the password box on the sign-up form has
autocomplete="off"
, which most browsers will ignore. If you change that toautocomplete="new-password"
, any half-decent plugin should recognise that it's not the sign-in form, and not fill it with the current password. :) How to turn off form autocompletion - Web security | MDN[^] As a bonus, the browser should offer to generate a new secure password for you when you complete the form.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
There's one small tweak I'd suggest: currently, the password box on the sign-up form has
autocomplete="off"
, which most browsers will ignore. If you change that toautocomplete="new-password"
, any half-decent plugin should recognise that it's not the sign-in form, and not fill it with the current password. :) How to turn off form autocompletion - Web security | MDN[^] As a bonus, the browser should offer to generate a new secure password for you when you complete the form.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
Done. Will be set next deploy
cheers Chris Maunder