mirror of
https://github.com/lxsang/antd-web-apps
synced 2024-11-20 10:18:21 +01:00
15 lines
437 B
Plaintext
15 lines
437 B
Plaintext
<?lua
|
|
if REQUEST.method == "POST" then
|
|
return echo(JSON.encode(REQUEST))
|
|
end
|
|
?>
|
|
<form action="https://apps.localhost:9195/index/form" method="post">
|
|
<fieldset>
|
|
<legend>Personal information:</legend>
|
|
First name:<br>
|
|
<input type="text" name="firstname" value="Mickey"><br>
|
|
Last name:<br>
|
|
<input type="text" name="lastname" value="Mouse"><br><br>
|
|
<input type="submit" value="Submit">
|
|
</fieldset>
|
|
</form> |