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.
Chrome - save password on this site offer
Asked Answered
This answer helped me: https://mcmap.net/q/384533/-how-do-i-disable-the-save-password-bubble-in-chrome-using-javascript –
Kendalkendall
Try setting autocomplete="off"
on your input:
<input type="password" name="password" autocomplete="off" />
© 2022 - 2024 — McMap. All rights reserved.