382
|
1 local Io = require "luan:Io"
|
388
|
2 local Html = require "luan:Html"
|
382
|
3 local Http = require "luan:web/Http"
|
|
4
|
|
5
|
388
|
6 local function form() %>
|
|
7 <form>
|
|
8 <label>What is you name?</label>
|
|
9 <input name="name" margin-bottom="1em">
|
|
10 <input type=submit>
|
|
11 </form>
|
|
12 <% end
|
|
13
|
|
14 local function hello() %>
|
|
15 <p>Hi <%= name %>!</p>
|
|
16 <% end
|
382
|
17
|
|
18 function service()
|
|
19 Io.stdout = Http.response.text_writer()
|
|
20 name = Http.request.parameters.name
|
388
|
21 Html.simply_html_page{
|
|
22 body = function() %>
|
|
23 <div container>
|
|
24 <h1 margin-bottom="1em">Hello</h1>
|
|
25 <%
|
|
26 if name == nil then
|
|
27 form()
|
|
28 else
|
|
29 hello()
|
|
30 end
|
|
31 %>
|
|
32 <p margin-top="2em"><small>This page was made with <a href="http://www.simplyhtml.org/">SimplyHTML</a>.</small></p>
|
|
33 </div>
|
|
34 <% end;
|
|
35 }
|
382
|
36 end
|