I tried to confuse the browser so that it didn’t know which input field to fill in, and it looks like a cross-platform - cannot check it on explorer thouth ...
Try this or something like that:
<input type="password" class="bigText login" name="hiddenFieldToStopBrowserAutofill" style = "height : 0px; width : 0px; border : 0px"/>
From what I saw, it only works if you specify the same class as the other from the fields on the form (in this case I have a “BigText login” for the password and email address), and then make it invisible in the way I described above. If you try to use "display = none", this will not work.
I also tried some variations of the values = ", value =" "etc., to stop the browser, replacing the line with what it wants to overlay on the page, but that didn’t work ... Saves your time trying if you were hoping to a cleaner opton
source share