summaryrefslogtreecommitdiff
path: root/tests/checkbox.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/checkbox.ur')
-rw-r--r--tests/checkbox.ur10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/checkbox.ur b/tests/checkbox.ur
new file mode 100644
index 0000000..6d7ee34
--- /dev/null
+++ b/tests/checkbox.ur
@@ -0,0 +1,10 @@
+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>