Commit 79bcb348b0de8cb280fc427cba62a50e3ef86226
1 parent
b50929bb
add form as html_tag
Showing
1 changed file
with
3 additions
and
0 deletions
Show diff stats
web/CXM_making_a_web_site.anubis
| @@ -1431,6 +1431,9 @@ public define HTML_Off_Form footer(List(CoreAttrs) attrs, HTML_Off_Form content) | @@ -1431,6 +1431,9 @@ public define HTML_Off_Form footer(List(CoreAttrs) attrs, HTML_Off_Form content) | ||
| 1431 | public define HTML_Off_Form footer(List(HTML_Off_Form) content) = html_tag("footer", [], content). | 1431 | public define HTML_Off_Form footer(List(HTML_Off_Form) content) = html_tag("footer", [], content). |
| 1432 | public define HTML_Off_Form footer(HTML_Off_Form content) = html_tag("footer", [], [content]). | 1432 | public define HTML_Off_Form footer(HTML_Off_Form content) = html_tag("footer", [], [content]). |
| 1433 | 1433 | ||
| 1434 | + // <form> | ||
| 1435 | +public define HTML_Off_Form form(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("form", attrs, content). | ||
| 1436 | + | ||
| 1434 | // <header> | 1437 | // <header> |
| 1435 | public define HTML_Off_Form header(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("header", attrs, content). | 1438 | public define HTML_Off_Form header(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("header", attrs, content). |
| 1436 | public define HTML_Off_Form header(List(CoreAttrs) attrs, HTML_Off_Form content) = html_tag("header", attrs, [content]). | 1439 | public define HTML_Off_Form header(List(CoreAttrs) attrs, HTML_Off_Form content) = html_tag("header", attrs, [content]). |