Dash: any text input that hides the value, similar to a password input

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.

Hi @matt.sd.watson

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()
2 Likes