!7
html {
S referer = subBot_referer();
S msg = params.get("message");
ret hhtml(hhead(
hcss([[
body { background-color:white; }
p { font:normal 14px Arial, Helvetica; color:black; line-height:18px; }
]]))
+ hbody(
himg("http://www.web-woody-lab.de/IMG_1460%20herz.jpg", width := 180)
+ p("Hallo Welt! " + unnull(referer) + " " +
(nempty(msg) ? "Wie was: " + htmlencode(msg) : str(now())))
+ hformPOST(htextinput("message", style := "width: 180px", autofocus := 1))
, style := "margin: 0px"));
}