Hi,
When I refresh my page, the password that I have saved in Google is written in my password field. I don’t want it to be written, I want the empty field to appear. how can I achieve this?

I created this block so that it appears empty but the password continues to be typed
Regards.
Hello @Alvaro_Sanchez,
The autofill behavior you’re experiencing is performed by your browser.
You can disable this feature in your browser’s settings if you prefer.
If you’d like to handle this programmatically, you can use a Custom Code block in the onPageEnter
handler, for example, as shown in the screenshots.
This code will clear the password field 1000 milliseconds after the page loads.
Regards,
Alexander
Hi,
I have entered the custom code with the code you have given me but the password is overwritten with the title of the entry.
This only happens when I have logged in.

When I access from the backendless preview the result is good. I see how it paints the password and after 1000 milliseconds it deletes it.

Regards,
Alvaro
During the page loading process you can see how the password is deleted and then the password and title are reloaded. I think it must be a problem with the sequences forming the structure of the page.
Regards,
Alvaro
The problem is that the password is deleted and then repainted, the problem is not that it is overwritten on top of the title since if the field is blocked the same thing continues to happen but the title remains at the top of the input.
Regards,
Alvaro
Hello @Alvaro_Sanchez!
I believe this issue might be related to a timeout, and it may be challenging to configure it perfectly. Therefore, I would like to suggest an alternative solution that has worked better in my case. Please try modifying the code to the following:
document.querySelector('input[type="password"]').setAttribute( "autocomplete", "new-password")
Regards,
Alexander
Hello @Alexander_Pavelko,
I have solved the problem. It turns out that it autocompleted the field since it returned the email in another input…
I have created the following block in the email input to solve it and with that it no longer writes the password: