-3

i have a webpage and in Chrome and Firefox the browser ask me to save the login-information. But the IE11 is not asking to save the login-information. Can someone help? Thanks!

Input for username:

<input id="mui-id-2" style="font: inherit; padding: 0px; border: currentColor; border-image: none; width: 100%; height: 100%; color: rgba(0, 0, 0, 0.87); margin-top: 14px; position: relative; box-sizing: border-box; font-size-adjust: inherit; font-stretch: inherit; background-color: transparent; tap-highlight-color: rgba(0, 0, 0, 0);" type="text" data-reactid=".0.0.0.1.0.5.1.0.$=10.0.1.2">

Input for password:

<input id="mui-id-3" style="font: inherit; padding: 0px; border: currentColor; border-image: none; width: 100%; height: 100%; color: rgba(0, 0, 0, 0.87); margin-top: 14px; position: relative; box-sizing: border-box; font-size-adjust: inherit; font-stretch: inherit; background-color: transparent; tap-highlight-color: rgba(0, 0, 0, 0);" type="password" data-reactid=".0.0.0.1.0.5.1.0.$=10.0.3.2">
Ludwig Meier
  • 277
  • 1
  • 4
  • 12

1 Answers1

0

Try adding a Name attribute to your inputs.

<input type="text" name="username" />
<input type="password" name="password" />
Robin Dorbell
  • 1,569
  • 1
  • 13
  • 26