This commit is contained in:
Lizandro Guarnizo
2026-04-29 23:01:58 -05:00
parent c1f415e8ae
commit 9d4c4dba65
4 changed files with 26 additions and 27 deletions
+3
View File
@@ -15,6 +15,9 @@ import (
func LoginGet(c *fiber.Ctx) error {
data := getFlashData(c)
data["title"] = "Login | "
if errMsg := c.Query("error"); errMsg != "" {
data["error"] = errMsg
}
return c.Render("auth/login", data, "layouts/landing")
}