Add admin password change flow (closes #65)
All checks were successful
check / check (push) Successful in 5s

This commit is contained in:
2026-08-07 22:54:44 +07:00
parent 81413c56e9
commit 3084ed545b
4 changed files with 379 additions and 49 deletions

View File

@@ -110,6 +110,7 @@ func (s *Server) setupUserRoutes() {
r.Use(s.mw.NoCache())
r.Use(s.mw.RequireAuth())
r.Get("/", s.h.HandleProfile())
r.Post("/password", s.h.HandlePasswordChange())
})
}