# Disable HTML Form Input Autocomplete and Autofill 1. Add `autocomplete="off"` onto `
` element; 2. Add hidden `` with `autocomplete="false"` as a first children element of the form. ````html ... ```` This formation is going to prevent Chrome and Firefox to offer autofill and autocomplete for all input fields inside the form.