Mercurial > urweb
view tests/form.ur @ 2067:88841212f0ba
In computing command lines, put filenames inside of quotes, to support spaces and other funky characters nicely
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Thu, 04 Sep 2014 08:40:14 -0400 |
parents | 71bafe66dbe1 |
children |
line wrap: on
line source
val handler = fn r => <html><body> <li> Name: {cdata r.Nam}</li> <li> Word: {cdata r.Word}</li> </body></html> val main : unit -> page = fn () => <html><body> <lform> Name: <textbox{#Nam} /><br/> Word: <textbox{#Word} /><br/> <submit action={handler}/> </lform> </body></html>