-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathui.R
63 lines (42 loc) · 1.15 KB
/
ui.R
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
library('shiny')
library('markdown')
shinyUI(fluidPage(
title = 'Signify',
theme = 'flatly.css',
fluidRow(column(12, div(style = 'height: 200px;'))),
fluidRow(
fluidRow(
column(8, offset = 2,
h1('Signify'),
tags$style(type = 'text/css', 'h1 { font-size: 60px; }')
)
),
fluidRow(column(12, div(style = 'height: 10px;'))),
fluidRow(
column(4, offset = 2,
textInput('pval', 'Your p-value:', value = 0.051, width = '100%')
),
column(4, offset = 0,
actionButton('submit', 'Signify', icon = icon('check'),
class = 'btn-success'),
tags$style(type='text/css', '#submit { width:100%; margin-top: 25px;}')
)
),
# fluidRow(
# column(6, offset = 3,
# dataTableOutput('keyval')
# )
# ),
fluidRow(
column(8, offset = 2,
h2(textOutput('keyval')),
tags$style(type = 'text/css', 'h2 { font-size: 40px; }')
)
),
fluidRow(
column(8, offset = 2,
includeMarkdown('help/footer.md')
)
)
)
))