moved login to use my new form

This commit is contained in:
James Tombleson 2024-07-09 08:33:25 -07:00
parent b6a6bb0043
commit 435dfbda40

View File

@ -11,7 +11,7 @@ import (
)
func (h *Handler) UserLogin(c echo.Context) error {
return Render(c, http.StatusOK, users.Login())
return Render(c, http.StatusOK, users.LoginNew())
}
func (h *Handler) UserAfterLogin(c echo.Context) error {