tchoutchou/examples/html.lua
ato 84d7e20baa
All checks were successful
continuous-integration/drone/push Build is passing
feat: basic handle of multipart form-data
2023-02-15 19:34:58 +01:00

23 lines
411 B
Lua

local app = create_app()
app:get("/", function(req, res)
res.body = [[
<html style="background-color:black;">
<body>
<form action="/submit" method="post">
<input name="hello" value="Hello, World!" />
<button type="submit">submit</button>
</form>
</body>
</html>
]]
return res
end)
app:post("/submit", function(req, res)
res.body = req.form.hello
return res
end)
app:run(3000)