Added auth layout and route for login.

This commit is contained in:
mikestefanello 2021-12-03 15:41:40 -05:00
parent 869fa82f14
commit fe0fb8c801
8 changed files with 124 additions and 32 deletions

View file

@ -61,5 +61,6 @@ func navRoutes(e *echo.Echo, ctr controllers.Controller) {
}
func userRoutes(e *echo.Echo, ctr controllers.Controller) {
// TODO
login := controllers.Login{Controller: ctr}
e.GET("/user/login", login.Get).Name = "login"
}