thats my whole ui.R file. Kindly look at it and tell me whats off here?
# ui.R
fluidPage(
###### use a gradient in background
setBackgroundColor(
color = c("#D2691E", "#F7FBFF"),
gradient = "linear",
direction = "bottom"
),
navbarPage("methods of interest", theme = shinytheme("yeti") ),
tabsetPanel(
tabPanel("Submit job",
hr(),
fluidRow(
column(5,
wellPanel(
textInput("text", "1. Enter experiment name", "title"),
verbatimTextOutput("value"),
awesomeCheckboxGroup("methods",
label = ("methods available"),
choices = list("one" = "X", "two" = "Q"),
selected = "Q", inline = FALSE, status = "primary"
),
conditionalPanel(
condition = "input.methods == 'X'",
wellPanel(
radioButtons(
inputId = "matrix",
label = "matrix multiply",
choices = c("one", "two"),
selected = "one",
inline = T
)
)
),
fileInput("file", "3a. Enter custom file", accept = c(".csv", ".txt")),
h5("OR"),
hr(),
fluidRow(column(3, verbatimTextOutput("value"))),
actionButton("goButton", "Submit!")
),
)
)
),
navbarMenu("Tables & Plots",
tabPanel("1"),
tabPanel("2")
) ))