-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathui.R
More file actions
36 lines (34 loc) · 1.18 KB
/
ui.R
File metadata and controls
36 lines (34 loc) · 1.18 KB
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
26
27
28
29
30
31
32
33
34
35
36
# SHINY UI ####
# Aplicacion ####
dashboardPagePlus(
skin = "black",
title = "Basic LogIn",
# enable_preloader = TRUE,
sidebar_fullCollapse = T,
# TITULO --------------------
header = dashboardHeaderPlus(
title = "Basic LogIn",
userOutput("menu_user")
),
# BARRA LATERAL--------------------
sidebar = dashboardSidebar(
useShinyjs(),
useSweetAlert(),
sidebarMenuOutput("menu")
),
# CONTENIDO--------------------
body = dashboardBody(
login_ui("login"),
# CONTENIDO TABS--------------------
tabItems(
# 1 - Personal > Personal Activo --------------------
tabItem(tabName = "first_page",
hidden(div(id="first_page_show", ## ATENCION
fluidRow(
h1(HTML("Bienvenido!!! Más info en <a href = 'https://www.hasselpunk.com' target = '_blank'>hasselpunk</a>!!!"), align = "center")
)
)) ## ATENCION
) # cierra el tab
)# cierra tabitems
)# cierra el body del dashboard
)# cierra el dashboard page