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 { type LoginSignals struct {
Username string `json:"username"` Username string `json:"username"`
Password string `json:"password"` Password string `json:"password"` //nolint:gosec // form input, not stored
} }
type RegisterSignals struct { type RegisterSignals struct {
Username string `json:"username"` Username string `json:"username"`
Password string `json:"password"` Password string `json:"password"` //nolint:gosec // form input, not stored
Confirm string `json:"confirm"` Confirm string `json:"confirm"`
} }