For commenting from @Wallace Maxters, I discovered that nowhere does it say exactly how to disable this Pop-UP
(in the right ways), but there are ways to circumvent this.
Why does that happen?
Whenever a form with <input type="password">
is sent the Chrome
will ask the question of Pop-UP
.
And what’s the solution to that?
Add 2 false fields next to your password field.
<input type="password" class="stealthy" tabindex="-1">
<input type="password" " id="user_password" autocomplete="off">
<input type="password" class="stealthy" tabindex="-1">
And use the following CSS
.stealthy {
left: 0;
margin: 0;
max-height: 1px;
max-width: 1px;
opacity: 0;
outline: none;
overflow: hidden;
pointer-events: none;
position: absolute;
top: 0;
z-index: -1;
}
The reason of the class CSS
is makes the fields invisible and declassified.
See related English: https://stackoverflow.com/questions/23177225/how-do-i-disable-the-save-password-bubble-in-chrome-using-javascript
– Wallace Maxters
Who negatively could explain why? So I could improve the question.
– Marconi
@Wallacemaxters through the link I managed to get the answer! Vlw :)
– Marconi
Now there are two negatives. It seems that there is a little galley who did not like the question, but can not explain well what happened.
– Wallace Maxters
It seems so, will understand =D;
– Marconi
already understood. It must be because you yourself answered, but the guys do not know that the system of the site encourages it :p
– Wallace Maxters
May I ask why you wish to do this? I cannot visualize an environment where the philosophy of the password store browser might conflict with the application.
– Woss
@Andersoncarloswoss can. I’m creating a
Redefinir Senha
and when the form is submittedCrome
is asking this kind of question.– Marconi
@Marconi but it is not interesting that he does this not to keep the old password stored instead of the new?
– Woss
@Andersoncarloswoss in my case not, even because this user that is in print is not what I am changing the password.
– Marconi
@Andersoncarloswoss it created a certain confusion in Ester here, and she thought it best to withdraw.
– Marconi