I have a login window on my web app to let the user type it’s username and password
it’s a simple web page that check the user/pw and continue or not to the main page.
no browser seems to let my users save the password in the browser keychain.
I want to let the user save their password
what did I do to forbid that ?
thanks.
My login windows have worked with browsers asking to save the password. I use Safari, but I think Chrome asked also. The only thing I can think of is the password text field would probably need to be set to type = password.
1 Like
ok found it !
I had the control named “user” and password”
and you need to name them “username” and “password” and suddenly it works !
3 Likes