delphimvcframework/redist/Lua/html/form.lua
2013-10-29 16:36:46 +00:00

5 lines
120 B
Lua

html = {}
function html:input(type, value)
return string.format('<input type="%s" value="%s"/>', type, value)
end