0

I have a simple html form that sends its data via an ajax/post. The form contains a password input, and when the form is send the user gets a prompt to save password to keychain.

I tried to change type='password' to type='text' and add CSS (text-security) but Safari still interpret the field as a password and try it to save to keychain.

It is possible to block the prompt to save to keychain ?

Version Safari: 12.1 (14607.1.40.1.4)

OSX: 10.14.4

Thanks, Filip

einord
  • 2,278
  • 2
  • 20
  • 26

1 Answers1

0

According to this question naming a field 'username' could also trigger the detection. Try to name your fields without using 'username' or 'password'.

Another option is to tell Safari never to remember passwords for your site.

Menkid
  • 1
  • 2