How to disable com.vaadin.shared.ui.textfield...?

Hi everyone, I am developing a web application and I noticed that in the login by doing tests with the browser developer tool, the password is also visible in the console.
Does anyone know how this last one could be solved?

Cattura78

Hi,

Under the hood, the PasswordField is represented by <input type="password"/> HTML element (like most password fields) and hides the input only from “over the shoulder” visual observation. Unless the server connection is encrypted with a secure connection, such as HTTPS, the input is transmitted in clear text and may be intercepted by anyone with low-level access to the network.

Regards,
Gleb

1 Like