about summary refs log tree commit diff stats
path: root/html/elements.go
diff options
context:
space:
mode:
Diffstat (limited to 'html/elements.go')
-rw-r--r--html/elements.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/html/elements.go b/html/elements.go
index 79db67f..eb6fbc2 100644
--- a/html/elements.go
+++ b/html/elements.go
@@ -111,6 +111,11 @@ func Embed(children ...g.Node) g.Node {
 	return g.El("embed", children...)
 }
 
+func Form(children ...g.Node) g.Node {
+	return g.El("form", children...)
+}
+
+// Deprecated: Use [Form] instead.
 func FormEl(children ...g.Node) g.Node {
 	return g.El("form", children...)
 }