-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.R
More file actions
25 lines (17 loc) · 750 Bytes
/
Copy pathui.R
File metadata and controls
25 lines (17 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ui.R
# UI for nav auth
# Empty UI , UI is made by the servr according to the user.
ui <- renderUI(uiOutput("MainUI"))
# Shinymanager Part
secure_app(ui,enable_admin = FALSE,
tags_top =
tags$div(
tags$h4("WELCOME !"),
tags$h5("The differents users are - appcreator /appcreatorpwd
- example1nav or example1dash / example1pwd -
- exampletitanic/exampletitanicpwd"),
tags$img(
src = "https://avatars.githubusercontent.com/u/44371566?v=4", width = 150
)
),
tags_bottom = tags$div())