formlets-0.3: Formlets implemented in Haskell

Text.XHtml.Strict.Formlets

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

inputInteger :: 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