refactor: replace via framework with chi + templ + datastar #2

Merged
ryan merged 9 commits from refactor/remove-via into main 2026-03-03 00:47:20 +00:00
Showing only changes of commit 67d4dba37f - Show all commits

View File

@@ -15,12 +15,12 @@ import (
type LoginSignals struct {
Username string `json:"username"`
Password string `json:"password"`
Password string `json:"password"` //nolint:gosec // form input, not stored
}
type RegisterSignals struct {
Username string `json:"username"`
Password string `json:"password"`
Password string `json:"password"` //nolint:gosec // form input, not stored
Confirm string `json:"confirm"`
}