delphimvcframework/samples/simplewebapplication/www/index.elua

10 lines
340 B
Plaintext
Raw Normal View History

2013-11-12 01:23:50 +01:00
<?lua require 'Lua.html.form' ?>
<html>
<body>
<?lua=html:form_start('myform', "POST", "/customers?par1=ThisIsAnotherParameter") ?>
2013-11-12 01:23:50 +01:00
FirstName: <?lua=html:input('first_name') ?> <br>
LastName: <?lua=html:input('last_name') ?> <br>
<?lua=html:submit("btnSend", "Send your data") ?>
<?lua=html:form_end()?>
</body>
</html>