Phase 3: HTMX inline tag editing, swap animations, loading indicators, Alpine phone validation

This commit is contained in:
2026-08-07 18:18:49 +10:00
parent e264125214
commit aa023cf89e
9 changed files with 87 additions and 9 deletions

View File

@@ -70,6 +70,7 @@ func main() {
mux.Handle("GET /account", app.RequireAuth(app.Account))
mux.Handle("POST /account/tags", app.RequireAuth(app.AddTag))
mux.Handle("GET /account/tags/{id}/edit", app.RequireAuth(app.EditTagPage))
mux.Handle("GET /account/tags/{id}/edit/inline", app.RequireAuth(app.EditInlinePage))
mux.Handle("POST /account/tags/{id}/edit", app.RequireAuth(app.EditTag))
mux.Handle("POST /account/tags/{id}/delete", app.RequireAuth(app.DeleteTag))