logoutButton {auth0} | R Documentation |
Create a button to log out
Description
A logoutButton
is an actionButton
that is meant
to be used to log out of an auth0 Shiny app.
Usage
logoutButton(label = "Log out", ..., id = "._auth0logout_")
Arguments
label |
The label on the button. |
... |
Named attributes to apply to the button. |
id |
An ID for the button. If you only have one logout button in
your app, you do not need to explicitly provide an ID. If you have more than
one logout button, you need to provide a unique ID to each button. When you
create a button with a non-default ID, you must create an observer that
listens to a click on this button and logs out of the app with a call to
|
See Also
Examples
if (interactive()) {
ui <- fluidPage(
logoutButton(),
logoutButton(label = "Another logout button", id = "logout2")
)
server <- function(input, output, session) {
observeEvent(input$logout2, {
logout()
})
}
shinyAuth0App(ui, server)
}
[Package auth0 version 0.2.3 Index]