Chrome - save password on this site offer

前端 未结 1 1945
野趣味
野趣味 2021-01-29 09:53

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

相关标签:
1条回答
  • 2021-01-29 10:05

    Try setting autocomplete="off" on your input:

    <input type="password" name="password" autocomplete="off" />
    

    https://developer.mozilla.org/en-US/docs/Mozilla/How_to_Turn_Off_Form_Autocompletion?redirectlocale=en-US&redirectslug=How_to_Turn_Off_Form_Autocompletion

    0 讨论(0)
提交回复
热议问题