autocomplete="off" in Custom Attributes for each input field. autocomplete="off" on the form tag. Disabling autocomplete in Webflow form inputs can be tricky due to how browsers (especially Chrome) override form settings. Here's how to properly implement it in Webflow:
autocompleteoff (not false)
autocomplete="off" if they suspect the form might contain sensitive or frequently autofilled data.text and one password type input.display: none.
Webflow’s Designer doesn’t allow editing the <form> tag directly. To fix this:
<script>
document.addEventListener("DOMContentLoaded", function () {
const forms = document.querySelectorAll('form');
forms.forEach(form => {
form.setAttribute('autocomplete', 'off');
});
});
</script>
"email", "name", "password"—browsers may trigger auto-fill regardless of the autocomplete attribute."useremailfake", "formname_input".
To effectively disable autocomplete in Webflow, set autocomplete="off" via Custom Attributes on inputs, inject a script to apply it on the form tag, and optionally add hidden dummy fields to trick browser autofill. Also, use unconventional field names to avoid triggering autocomplete behavior.