How to change existing login form to ignore password manager?autocomplete ='off' is not working when the input type is password and make the input field above it to enable autocompleteHow do you disable browser Autocomplete on web form field / input tag?How to change an element's class with JavaScript?Removing the remembered login and password list in SQL Server Management StudioHow do you overcome the HTML form nesting limitation?How to change users in TortoiseSVNSQL Server 2008 can't login with newly created userHow do you use bcrypt for hashing passwords in PHP?Password Manager no longer works with Password field after redesignDisabling Chrome AutofillPassword change update password manager best practice

What is the difference between increasing volume and increasing gain?

GPLv3 forces us to make code available, but to who?

Lighthouse Alternatives

Is there anything on the ISS that would be destroyed if that object were returned to Earth?

Do jackscrews suffer from blowdown?

Avoiding dust scattering when you drill

Looking for circuit board material that can be dissolved

What is the idiomatic solution in SQL Server for reserving a block of ids for use in a bulk insert?

Is there an in-universe explanation of how Frodo's arrival in Valinor was recorded in the Red Book?

Did the Soviet army intentionally send troops (e.g. penal battalions) running over minefields?

Is "weekend warrior" derogatory?

Why do personal finance apps focus on outgoings rather than income

Why does it seem the best way to make a living is to invest in real estate?

When Vesuvan Shapeshifter copies turn face up replacement effects, why do they work?

What is the score of my Scopa hand?

Why not add cuspidal curves in the moduli space of stable curves?

Can the President of the US limit First Amendment rights?

Nurikabe: Sixes

How to identify whether a publisher is genuine or not?

How to level a picture frame hung on a single nail?

Why most footers have a background color as a divider of section?

Missing quartile in boxplot

Sending mail to the Professor for PhD, after seeing his tweet

Did Joe Biden "stop a prosecution" into his son in Ukraine? And did he brag about stopping the prosecution?



How to change existing login form to ignore password manager?


autocomplete ='off' is not working when the input type is password and make the input field above it to enable autocompleteHow do you disable browser Autocomplete on web form field / input tag?How to change an element's class with JavaScript?Removing the remembered login and password list in SQL Server Management StudioHow do you overcome the HTML form nesting limitation?How to change users in TortoiseSVNSQL Server 2008 can't login with newly created userHow do you use bcrypt for hashing passwords in PHP?Password Manager no longer works with Password field after redesignDisabling Chrome AutofillPassword change update password manager best practice






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;









0















We have an existing web site and we are changing the type of information that's required to log in. We are finding that users' password managers are still submitting the old information, causing the users' new login credentials to be rejected. The password manager is even passing fields that we no longer have in the page to our authentication code.



We have removed an input field, changed the form name and changed the names of the remaining input fields. We have had the users clear the browser cache, to no avail. When the users manually delete the information in the password manager, they can log in.



What else do we need to do so that the password manager does not fill in the old data for other users?










share|improve this question
























  • did you try adding autocomplete="off" to the input fields/form?

    – Hybrid
    Mar 28 at 20:54






  • 1





    Also, it looks like this has been discussed here: stackoverflow.com/questions/17719174/… - the consensus seems to be that password managers override autocomplete="off", and the temporary solution (which works everywhere except firefox) is to use autocomplete="new-password"

    – Hybrid
    Mar 28 at 20:56











  • It's not a password field. Will autocomplete="new-password" still work?

    – elmonty
    Mar 28 at 21:01











  • If that's the case, then just try autocomplete="off". There is more information in the thread link I provided above

    – Hybrid
    Mar 28 at 21:02

















0















We have an existing web site and we are changing the type of information that's required to log in. We are finding that users' password managers are still submitting the old information, causing the users' new login credentials to be rejected. The password manager is even passing fields that we no longer have in the page to our authentication code.



We have removed an input field, changed the form name and changed the names of the remaining input fields. We have had the users clear the browser cache, to no avail. When the users manually delete the information in the password manager, they can log in.



What else do we need to do so that the password manager does not fill in the old data for other users?










share|improve this question
























  • did you try adding autocomplete="off" to the input fields/form?

    – Hybrid
    Mar 28 at 20:54






  • 1





    Also, it looks like this has been discussed here: stackoverflow.com/questions/17719174/… - the consensus seems to be that password managers override autocomplete="off", and the temporary solution (which works everywhere except firefox) is to use autocomplete="new-password"

    – Hybrid
    Mar 28 at 20:56











  • It's not a password field. Will autocomplete="new-password" still work?

    – elmonty
    Mar 28 at 21:01











  • If that's the case, then just try autocomplete="off". There is more information in the thread link I provided above

    – Hybrid
    Mar 28 at 21:02













0












0








0








We have an existing web site and we are changing the type of information that's required to log in. We are finding that users' password managers are still submitting the old information, causing the users' new login credentials to be rejected. The password manager is even passing fields that we no longer have in the page to our authentication code.



We have removed an input field, changed the form name and changed the names of the remaining input fields. We have had the users clear the browser cache, to no avail. When the users manually delete the information in the password manager, they can log in.



What else do we need to do so that the password manager does not fill in the old data for other users?










share|improve this question














We have an existing web site and we are changing the type of information that's required to log in. We are finding that users' password managers are still submitting the old information, causing the users' new login credentials to be rejected. The password manager is even passing fields that we no longer have in the page to our authentication code.



We have removed an input field, changed the form name and changed the names of the remaining input fields. We have had the users clear the browser cache, to no avail. When the users manually delete the information in the password manager, they can log in.



What else do we need to do so that the password manager does not fill in the old data for other users?







html authentication login passwords






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 28 at 20:52









elmontyelmonty

1,0853 gold badges11 silver badges27 bronze badges




1,0853 gold badges11 silver badges27 bronze badges















  • did you try adding autocomplete="off" to the input fields/form?

    – Hybrid
    Mar 28 at 20:54






  • 1





    Also, it looks like this has been discussed here: stackoverflow.com/questions/17719174/… - the consensus seems to be that password managers override autocomplete="off", and the temporary solution (which works everywhere except firefox) is to use autocomplete="new-password"

    – Hybrid
    Mar 28 at 20:56











  • It's not a password field. Will autocomplete="new-password" still work?

    – elmonty
    Mar 28 at 21:01











  • If that's the case, then just try autocomplete="off". There is more information in the thread link I provided above

    – Hybrid
    Mar 28 at 21:02

















  • did you try adding autocomplete="off" to the input fields/form?

    – Hybrid
    Mar 28 at 20:54






  • 1





    Also, it looks like this has been discussed here: stackoverflow.com/questions/17719174/… - the consensus seems to be that password managers override autocomplete="off", and the temporary solution (which works everywhere except firefox) is to use autocomplete="new-password"

    – Hybrid
    Mar 28 at 20:56











  • It's not a password field. Will autocomplete="new-password" still work?

    – elmonty
    Mar 28 at 21:01











  • If that's the case, then just try autocomplete="off". There is more information in the thread link I provided above

    – Hybrid
    Mar 28 at 21:02
















did you try adding autocomplete="off" to the input fields/form?

– Hybrid
Mar 28 at 20:54





did you try adding autocomplete="off" to the input fields/form?

– Hybrid
Mar 28 at 20:54




1




1





Also, it looks like this has been discussed here: stackoverflow.com/questions/17719174/… - the consensus seems to be that password managers override autocomplete="off", and the temporary solution (which works everywhere except firefox) is to use autocomplete="new-password"

– Hybrid
Mar 28 at 20:56





Also, it looks like this has been discussed here: stackoverflow.com/questions/17719174/… - the consensus seems to be that password managers override autocomplete="off", and the temporary solution (which works everywhere except firefox) is to use autocomplete="new-password"

– Hybrid
Mar 28 at 20:56













It's not a password field. Will autocomplete="new-password" still work?

– elmonty
Mar 28 at 21:01





It's not a password field. Will autocomplete="new-password" still work?

– elmonty
Mar 28 at 21:01













If that's the case, then just try autocomplete="off". There is more information in the thread link I provided above

– Hybrid
Mar 28 at 21:02





If that's the case, then just try autocomplete="off". There is more information in the thread link I provided above

– Hybrid
Mar 28 at 21:02












0






active

oldest

votes













Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55406678%2fhow-to-change-existing-login-form-to-ignore-password-manager%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55406678%2fhow-to-change-existing-login-form-to-ignore-password-manager%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript