Shiny仪表板内的HTML页面

时间:2016-07-07 13:54:29

标签: r shiny shinydashboard

我的问题对某些人来说很简单,但对其他人来说很难(像我一样)。

我有一个Shiny Dashboard我想在menuItem(Se connecter)中添加一个html页面来登录 enter image description here

否则,如果您有任何建议,请使用Shiny I,我会很高兴

PS:我有一个Web服务可以登录,所以我想要的是拥有一个漂亮,时尚的登录页面或面板的想法

1 个答案:

答案 0 :(得分:1)

也许您可以iframe将其插入信息中心?

rm(list = ls())
library(shiny)

ui <- fluidPage(titlePanel("Some Iframe"), 
                mainPanel(fluidRow(                    
                  tags$iframe(seamless="seamless",src="http://www.investing.com/quotes/streaming-forex-rates-%E2%80%93-majors", height=800, width=1400)
                )
                )
)
server <- function(input, output) {}
shinyApp(ui, server)

enter image description here