I am looking for a plotly dash component that can simply mask the text input value provided by the user, similar to a password input field:
I would like to use it to allow a user to input user credentials to access an external database.
I am looking for a plotly dash component that can simply mask the text input value provided by the user, similar to a password input field:
I would like to use it to allow a user to input user credentials to access an external database.
You can use:
dcc.Input(type="password")
or
dbc.Input(type="password")
https://dash-bootstrap-components.opensource.faculty.ai/docs/components/form/
or
dmc.PasswordInput()