0

Login form username and passwords are auto filled when i goes to login page.

I do not want to be filled automatically. User only should fill the form manually.

To solve this problem I have used

autocomplete='off'

but still I am getting same issue

JP G
  • 65
  • 7

1 Answers1

-2

try making the inputs empty after page load

document.getElementById('userName').value = '';
boomcode
  • 399
  • 1
  • 14