Mercurial > urweb
view tests/pass.ur @ 2134:752e5efe9da9
Use hyperref in manual
This allows the table of contents to show up properly in PDF readers.
author | Julian Squires <julian@cipht.net> |
---|---|
date | Fri, 24 Apr 2015 07:43:22 -0400 |
parents | 71bafe66dbe1 |
children |
line wrap: on
line source
val handler = fn r => <html><body> <li> Name: {cdata r.Nam}</li> <li> Password: {cdata r.Word}</li> </body></html> val main : unit -> page = fn () => <html><body> <lform> Name: <textbox{#Nam} /><br/> Password: <password{#Word} /><br/> <submit action={handler}/> </lform> </body></html>