Bootstrap text input
Usage
bs_text_input(
id,
label = NULL,
value = "",
...,
placeholder = NULL,
size = NULL,
help = NULL,
width = NULL
)Examples
bs_text_input("name", "Your name", placeholder = "Jane Doe")
#> <div class="form-group shiny-input-container">
#> <label class="control-label form-label" for="name" id="name-label">Your name</label>
#> <input id="name" type="text" class="shiny-input-text form-control" value="" placeholder="Jane Doe" data-update-on="change"/>
#> </div>