I created html form for registration, where user must fill password input. Actually if "register" button is pressed, then i process form on the server side and i make redirect. Chrome still offering me if i want to save password on this site (probably because it knows that there is password input on tha form, which was submitted). I wanna dissalow this offer from browser when user is registering.
Asked
Active
Viewed 1,152 times
-1
-
This answer helped me: http://stackoverflow.com/a/27072657/192221 – kristianp Oct 20 '15 at 05:49
1 Answers
1
Try setting autocomplete="off"
on your input:
<input type="password" name="password" autocomplete="off" />

Advocation
- 578
- 3
- 14