blob: b0319b594bfd00e96dcca5aa15ee4779530e26be (
plain)
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
|
let section name =
H.h1
[| HA.class_ "g-Form__Section" |]
[| H.text name |]
let input id label init_value on_input =
H.div
[| HA.class_ "g-Form__Field" |]
[| H.div
[| HA.class_ "g-Form__Label" |]
[| H.label
[| HA.for_ id |]
[| H.text label |]
|]
; H.input
[| HA.id id
; HE.on_input (fun e -> on_input (Element.value (Event.target e)))
; HA.value init_value
|]
[| |]
|]
let color_input id label init_value on_input =
H.div
[| HA.class_ "g-Form__Field" |]
[| H.div
[| HA.class_ "g-Form__Label" |]
[| H.label
[| HA.for_ id |]
[| H.text label |]
|]
; H.input
[| HA.id id
; HE.on_input (fun e -> on_input (Element.value (Event.target e)))
; HA.value init_value
; HA.type_ "color"
|]
[| |]
|]
let textarea id label init_value on_input =
H.div
[| HA.class_ "g-Form__Field" |]
[| H.div
[| HA.class_ "g-Form__Label" |]
[| H.label
[| HA.for_ id |]
[| H.text label |]
|]
; H.textarea
[| HA.id id
; HA.class_ "g-Form__Textarea"
; HE.on_input (fun e -> on_input (Element.value (Event.target e)))
|]
[| H.text init_value |]
|]
|