Create a contact page in Shiny

I would like to create a contact page like this app: Shiny - A/B Testing Sample Size Calculator.

See that it has a SEND US A MESSAGE field, where the person can enter information such as name, email, organization and a field to enter a message. How can I do this? I will insert a brief app below to help.

A point to highlight is that if I want to receive the message in my email, I believe I need a server, correct?Anyway, I want the easiest way possible for me to see this message, it doesn't necessarily have to be received in my email.

library(shiny)
library(shinythemes)

ui <- fluidPage(
  
  shiny::navbarPage(theme = shinytheme("flatly"), collapsible = TRUE,
                    br(),
                               tabPanel("Contact",
                                        sidebarLayout(
                                          sidebarPanel(
                                          ),
                               mainPanel(
         
                               )
                             )
  )))

server <- function(input, output,session) {
  
  
}

shinyApp(ui = ui, server = server)

Example:

enter image description here

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.