ui.input_password
id, label, value='', *, width=None, placeholder=None) 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 App, Inputs, Outputs, Session, reactive, render, ui
app_ui = ui.page_fluid(
ui.input_password("password", "Password:"),
ui.input_action_button("go", "Go"),
ui.output_text_verbatim("value"),
)
def server(input: Inputs, output: Outputs, session: Session):
@render.text
@reactive.event(input.go)
def value():
return input.password()
app = App(app_ui, server)