diff --git a/pkg/handlers/auth.go b/pkg/handlers/auth.go index e249b10..88ee967 100644 --- a/pkg/handlers/auth.go +++ b/pkg/handlers/auth.go @@ -47,9 +47,9 @@ func (h *Auth) Routes(g *echo.Group) { noAuth := g.Group("/user", middleware.RequireNoAuthentication) noAuth.GET("/login", h.LoginPage).Name = routenames.Login - noAuth.POST("/login", h.LoginSubmit).Name = routenames.LoginSubmit - noAuth.GET("/register", h.RegisterPage).Name = routenames.Register - noAuth.POST("/register", h.RegisterSubmit).Name = routenames.RegisterSubmit +// noAuth.POST("/login", h.LoginSubmit).Name = routenames.LoginSubmit +// noAuth.GET("/register", h.RegisterPage).Name = routenames.Register +// noAuth.POST("/register", h.RegisterSubmit).Name = routenames.RegisterSubmit noAuth.GET("/password", h.ForgotPasswordPage).Name = routenames.ForgotPassword noAuth.POST("/password", h.ForgotPasswordSubmit).Name = routenames.ForgotPasswordSubmit