Secure your Shiny UI
This function is used to secure your Shiny app's UI. Make sure to pass
your Shiny app's UI as the first argument to secure_ui()
at
the bottom of your Shiny app's ui.R
file.
secure_ui( ui, sign_in_page_ui = NULL, custom_admin_ui = NULL, custom_admin_button_ui = admin_button_ui(), admin_ui_options = default_admin_ui_options(), account_module_ui = NULL, splash_module_ui = NULL )
ui |
UI of the application. |
sign_in_page_ui |
Either |
custom_admin_ui |
Either list( "menu_items" = <your_custom_admin_menu_ui("custom_admin")>, "tab_items" = <your_custom_admin_tabs_ui("custom_admin")> ) |
custom_admin_button_ui |
Either |
admin_ui_options |
list of HTML elements to customize branding of the |
account_module_ui |
the UI portion for the user's account module. |
splash_module_ui |
the UI portion for the splash page module. |
Secured Shiny app UI
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.