How to disable Browser AutoFill? [duplicate]

-2

This screen is for registering my system.

And here's the input.

<input id="senha" name="senha" placeholder="" class="form-control input-md" required="" type="password" autocomplete="off" value="">

As you can see I already used the autocomplete but it did not work

    
asked by anonymous 19.09.2017 / 20:25

1 answer

-1

tag the autocomplete attribute of the input as off :

<input autocomplete="on|off">

link

    
19.09.2017 / 20:30