Skip to content

Instantly share code, notes, and snippets.

View lbollar's full-sized avatar

Lyndon Ollar lbollar

  • Walmart Technology
View GitHub Profile
@lbollar
lbollar / Login.R
Last active August 29, 2015 14:20 — forked from withr/server.R
#### Log in module ###
USER <- reactiveValues(Logged = Logged)
passwdInput <- function(inputId, label) {
tagList(
tags$label(label),
tags$input(id = inputId, type="password", value="")
)
}