inst/shiny/ui.R

shinyUI(
    fluidPage(
        # CSS
        tags$head(
            tags$link(rel = "stylesheet", type = "text/css", href = "styles.css"),
            tags$title("Phase I: Vaccine Dose Selection Design and Analysis"),
            tags$style(".shiny-file-input-progress {display: none}"),
        tags$script(src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML", type="text/javascript")
        ),


        withTags({
            div(class = "cheader",
                h5("Phase I: Vaccine Dose Selection Design and Analysis"),
                tags$button(
                    id = 'close',
                    type = "button",
                    class = "btn action-button",
                    onclick = "setTimeout(function(){window.close();},500);",
                    "Exit",
                    style="float: right;"
                )
            )
        }),

        # Main Page
        uiOutput("mainpage")
    )
)
 

Try the visit package in your browser

Any scripts or data that you put into this service are public.

visit documentation built on Aug. 9, 2023, 5:08 p.m.