formlets-0.4.1: Formlets implemented in Haskell

Text.XHtml.Strict.Formlets

Synopsis

Documentation

input :: Monad m => Maybe String -> XHtmlForm m StringSource

An input field with an optional value

password :: Monad m => Maybe String -> XHtmlForm m StringSource

A password field with an optional value

hidden :: Monad m => Maybe String -> XHtmlForm m StringSource

A hidden input field

inputInteger :: Monad m => Maybe Integer -> XHtmlForm m IntegerSource

A validated integer component

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

A radio choice

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

type XHtmlForm m a = Form Html m aSource