feat: added login page

no functionality tho
This commit is contained in:
Itsigo
2024-04-12 16:33:37 +02:00
parent 98301fa904
commit 96ec48483a
4 changed files with 54 additions and 10 deletions

10
handler/login.go Normal file
View File

@@ -0,0 +1,10 @@
package handler
import (
"github.com/gofiber/fiber/v3"
"github.com/itsig0/tallytome/view/login"
)
func Login(c fiber.Ctx) error {
return render(c, login.Show())
}