This is more of an HTML solution than a native Bubble one
but you can do this by inserting the ‘autocomplete=on’ property into a form HTML element
You can run some JS to do this with something like
var element = document.getElementById("myForm");
element.setAttribute('autocomplete', 'on');