features/templ-components #3

Merged
jtom38 merged 17 commits from features/templ-components into main 2024-07-13 10:40:28 -07:00
Showing only changes of commit cce768dad8 - Show all commits

View File

@ -1,6 +1,10 @@
package form package form
templ TextInput(color, id, fieldType, placeholder string) { templ TextInput(id, fieldType, placeholder string) {
<input class={ "input" } name={ id } id={ id } type={ fieldType } placeholder={ placeholder }/>
}
templ TextInputColor(color, id, fieldType, placeholder string) {
if color == "" { if color == "" {
<input class={ "input" } name={ id } id={ id } type={ fieldType } placeholder={ placeholder }/> <input class={ "input" } name={ id } id={ id } type={ fieldType } placeholder={ placeholder }/>
} else { } else {