static S hcheckbox(S name, bool checked) { ret tag("input", "", "type", "checkbox", "name", name, (checked ? "checked" : null), "1"); } static S hcheckbox(S name) { ret hcheckbox(name, false); }