We recently faced this issue, to overcome this we did some trick will explain below,
Problem,
We faced issue with save password modal is appearing when doing login (post successful), note we are not using inside
Solution
- We keep this
<input type="password" autoComplete="off" autoCorrect="off" />
as its
- Using CSS we will apply password type (dot) behaviour
mask the text and will show the password type dot
font-family: "text-security-disc";
text-security: disc;
-webkit-text-security: disc !important;
-mox-text-security: disc;
- Before submit(first step of submit before making ajax call) we will change the type of the input to "text" so that browser will not understand and wont prompt the user. also as you mapped password using CSS you cant able to see in the UI even if you change the type.