express.ui.input_password
id, label, value='', *, width=None, placeholder=None) express.ui.input_password(
Create an password control for entry of passwords.
Parameters
Returns
: Tag
-
A UI element.
Notes
Server value
A string of the password input. The default value is unless value is provided.
See Also
Examples
#| standalone: true
#| components: [editor, viewer]
#| layout: vertical
#| viewerHeight: 400
## file: app.py
from shiny import reactive
from shiny.express import input, render, ui
ui.input_password("password", "Password:")
ui.input_action_button("go", "Go")
@render.code
@reactive.event(input.go)
def value():
return input.password()