1
0
Fork
You've already forked fwf
0
No description
  • templ 63.1%
  • Go 24.8%
  • Nix 12.1%
Find a file
2026年03月29日 18:35:27 +02:00
error.go Initial commit 2026年02月09日 20:55:20 +01:00
error.templ Initial commit 2026年02月09日 20:55:20 +01:00
error_templ.go Initial commit 2026年02月09日 20:55:20 +01:00
flake.lock Initial commit 2026年02月09日 20:55:20 +01:00
flake.nix Initial commit 2026年02月09日 20:55:20 +01:00
go.mod Toasts 2026年02月15日 11:43:34 +01:00
go.sum Toasts 2026年02月15日 11:43:34 +01:00
head.templ Toasts 2026年02月15日 11:43:34 +01:00
head_templ.go Toasts 2026年02月15日 11:43:34 +01:00
LICENSE Added LICENSE 2026年03月29日 18:35:27 +02:00
README.md Initial commit 2026年02月09日 20:55:20 +01:00
toast.go Toasts 2026年02月15日 11:43:34 +01:00

UI library for fw

Should be used with Bootstrap.

Error

Example

templ FormView() {
 <form hx-target="#inputError" hx-get="<ErrorHandler>">
 @ErrorField("inputError")
 </form>
}
funcErrorHandler(whttp.ResponseWriter,r*http.Request){...iferr!=nil{Err("Failed to parse date","#dateInput").W(w)return}}