Bootstrap password input
Usage
bs_password_input(
id,
label = NULL,
value = "",
...,
size = NULL,
help = NULL,
width = NULL
)Examples
bs_password_input("pw", "Password", help = "At least 8 characters.")
#> <div class="form-group shiny-input-container">
#> <label class="control-label form-label" for="pw" id="pw-label">Password</label>
#> <input id="pw" type="password" class="shiny-input-password form-control" value="" data-update-on="change" aria-describedby="pw-help"/>
#> <div id="pw-help" class="form-text">At least 8 characters.</div>
#> </div>