pellest/src/tyx_util.ml

8 lines
241 B
OCaml
Raw Normal View History

2022-12-04 22:42:55 +01:00
open Tyxml.Html
let make_input_text id = input ~a:[ a_id id; a_name id; a_input_type `Text ] ()
let make_form request ~action ~items =
(* TODO labels ...? *)
form ~a:[ a_action action; a_method `Post ] (Util.csrf_tag request :: items)