forked from IBM-Blockchain-Archive/marbles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanel_create.jade
33 lines (27 loc) · 951 Bytes
/
panel_create.jade
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
#createPanel(hidden).panel
h1 Create Marble
hr
#innerWrap
span.createball
form(action="/create" method="POST")#createform
legend
input(type="text" name="name" placeholder="Name Your Marble")
span.hint RANDOM OR CUSTOM STRING
br
legend
include ./template/color_options.jade
br
legend
select(name="size")
option(value="35" disabled="disabled" selected="selected") Size
option(value="35") Large
option(value="16") Small
br
legend
select(name="user")
option(value="#{bag.setup.USER1}" disabled="disabled" selected="selected") User
option(value="#{bag.setup.USER1}") #{bag.setup.USER1.substring(0,1).toUpperCase() + bag.setup.USER1.substring(1)}
option(value="#{bag.setup.USER2}") #{bag.setup.USER2.substring(0,1).toUpperCase() + bag.setup.USER2.substring(1)}
button(type="button")#submit
span.fa.fa-check
span CREATE