added notification toasts (error modals still broken)

This commit is contained in:
2026-01-25 12:59:27 +11:00
parent 25461143ba
commit 959ca96b68
13 changed files with 990 additions and 89 deletions

View File

@@ -56,6 +56,11 @@ func addRoutes(
Methods: []hws.Method{hws.MethodGET, hws.MethodPOST},
Handler: auth.LoginReq(handlers.Logout(server, auth, conn, discordAPI)),
},
{
Path: "/test",
Methods: []hws.Method{hws.MethodGET, hws.MethodPOST},
Handler: handlers.Test(server),
},
}
htmxRoutes := []hws.Route{