I imagine it's not something directly related to Wappler, but rather to best practices or HTML features that I don't yet know how to implement. I'd like to block browsers from automatically filling in certain fields, especially password and email fields, which are usually auto-populated with data saved in the browser.
Does anyone have a solution to prevent this from happening?
I had already tried setting autocomplete="off" in the input, but even with this feature, when I open the form it fills in again. I would like to block autocomplete permanently.
Maybe as a workaround, you can try changing the name and type of the input, instead of name="email" change it to name="myinput"and instead of type="email", use type="text" and validate it to use it as email input type from the validate attribute option..
Note: if you change name="email" you'll need to change the behavior of the backend too because that input won't be sended anymore as "email", instead, it will be now "myinput"
In my experience, giving your form fields a completely obscure id and name especially on log in forms will prevent it as it cann't recognize them as login and password inputs.