package view
templ textLikeField(fieldType string, name string, placeholder string) {
}
templ TextField(name string, placeholder string) {
@textLikeField("text", name, placeholder)
}
templ PasswordField(name string, placeholder string) {
@textLikeField("password", name, placeholder)
}
templ Button(fieldType string, name string, attrs templ.Attributes) {
}
templ SecondaryButton(fieldType string, name string, attrs templ.Attributes) {
}