Signing back into the Community for the first time? You'll need to reset your password to access your account. Find out more.
Forum Discussion
danito
2 months agoOccasional Contributor
Password is being revealed in url
I have encountered a strange issue with a website: When I log in manually everything works as expected (I get logged in, no weird urls). But when I log in using 1Password's autofill, I do NOT get l...
- 31 days ago
Hello again, danito.
I’ve contacted our development team regarding this, and the problem stems from this specific website’s code.
This form is simply a `<form>` element lacking specific attributes. Without a method attribute, it defaults to `method= “get”`, which will direct the user to the specified path in the `action` attribute.
Moreover, the absence of Javascript listeners is linked to the clicking of the Sign-in button and the functionality of the auto-submit feature.
You can reproduce this without using 1Password at all if you select the Sign-in button in dev tools and type `$0.click()` in the console. That will run a `click` on the element you have selected in the Elements tab.
Our development team is in the process of updating our website design documentation for developers to reflect best practices: Design your website to work best with 1Password Developer.
I hope that helps. Let me know if you have any further questions.
-Evon
1P_Evon
1Password Team
31 days agoHello again, danito.
I’ve contacted our development team regarding this, and the problem stems from this specific website’s code.
This form is simply a `<form>` element lacking specific attributes. Without a method attribute, it defaults to `method= “get”`, which will direct the user to the specified path in the `action` attribute.
Moreover, the absence of Javascript listeners is linked to the clicking of the Sign-in button and the functionality of the auto-submit feature.
You can reproduce this without using 1Password at all if you select the Sign-in button in dev tools and type `$0.click()` in the console. That will run a `click` on the element you have selected in the Elements tab.
Our development team is in the process of updating our website design documentation for developers to reflect best practices: Design your website to work best with 1Password Developer.
I hope that helps. Let me know if you have any further questions.
-Evon
danito
31 days agoOccasional Contributor
Thank you! I don't grasp what this means fully myself but I will forward it to the website's team.