This function inserts a panel. Normally used for confirmation screens
Examples
ui <- shiny::fluidPage(
shinyGovstyle::header(
main_text = "Example",
secondary_text = "User Examples",
logo="shinyGovstyle/images/moj_logo.png"
),
shinyGovstyle::gov_layout(size = "full",
shinyGovstyle::panel_output(
inputId = "panel1",
main_text = "Application Complete",
sub_text = paste(
"Thank you for submitting your application.",
"Your reference is xvsiq"
)
),
shinyGovstyle::footer(full = TRUE)
)
)
#> Warning: Please use logo_alt_text to provide alternative text for the logo you used.
server <- function(input, output, session) {}
if (interactive()) shinyApp(ui = ui, server = server)