30 lines
636 B
Lua
30 lines
636 B
Lua
print([[
|
|
|
|
===============================================================================
|
|
Open your browser and go to http://localhost:3000
|
|
===============================================================================
|
|
]])
|
|
|
|
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)
|