delphimvcframework/redist/Lua/html/form.lua

5 lines
120 B
Lua
Raw Normal View History

2013-10-29 17:36:46 +01:00
html = {}
function html:input(type, value)
return string.format('<input type="%s" value="%s"/>', type, value)
end