mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 00:05:53 +01:00
10 lines
340 B
Plaintext
10 lines
340 B
Plaintext
<?lua require 'Lua.html.form' ?>
|
|
<html>
|
|
<body>
|
|
<?lua=html:form_start('myform', "POST", "/customers?par1=ThisIsAnotherParameter") ?>
|
|
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> |