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

static S hcheckbox(S name) {
  ret hcheckbox(name, false);
}