Mercurial > urweb
view tests/checkbox.ur @ 1440:6064ddd90ca6
Fix C compilation of empty records; use DESTDIR in 'make install/uninstall'
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sun, 20 Mar 2011 13:15:11 -0400 |
parents | 71bafe66dbe1 |
children |
line wrap: on
line source
val handler = fn x => <html><body> {if x.A then cdata "Yes" else cdata "No"} </body></html> val main = fn () => <html><body> <lform> <checkbox{#A}/> How about it?<br/> <submit action={handler}/> </lform> </body></html>