mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
5 lines
120 B
Lua
5 lines
120 B
Lua
|
html = {}
|
||
|
|
||
|
function html:input(type, value)
|
||
|
return string.format('<input type="%s" value="%s"/>', type, value)
|
||
|
end
|