formlets-0.2: Formlets implemented in Haskell

Text.Formlets.Widgets

Synopsis

Documentation

input :: Maybe String -> XHtmlForm StringSource

An input field with an optional value

password :: Maybe String -> XHtmlForm StringSource

A password field with an optional value

hidden :: Maybe String -> XHtmlForm StringSource

A hidden input field

inputIntegerF :: Maybe Integer -> XHtmlForm IntegerSource

A validated integer component

radio :: [(String, String)] -> Maybe String -> XHtmlForm StringSource

A radio choice

enumRadio :: Enum a => [(a, String)] -> Maybe a -> XHtmlForm aSource