mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
13 lines
307 B
Plaintext
13 lines
307 B
Plaintext
<?lua require 'Lua.html.form'?>
|
|
<html>
|
|
<body>
|
|
<h2>New Customer</h2>
|
|
<?lua=html:form_start("myForm", "POST", "/customers") ?>
|
|
|
|
FirstName: <?lua=html:input("firstName") ?>
|
|
<br>
|
|
LastName: <?lua=html:input("lastName") ?>
|
|
<?lua=html:submit("Save") ?>
|
|
<?lua=html:form_end() ?>
|
|
</body>
|
|
</html> |