all repos — gomponents @ 18e90339fcac48806a5777766aeb256be2b8c4bc

HTML components in pure Go

attr/form.go (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package attr

import (
	g "github.com/maragudk/gomponents"
)

// Placeholder returns an attribute with name "placeholder" and the given value.
func Placeholder(v string) g.Node {
	return g.Attr("placeholder", v)
}

// Required returns an attribute with name "required".
func Required() g.Node {
	return g.Attr("required")
}