Login form

This commit is contained in:
Eden Kirin
2024-02-05 23:27:44 +01:00
parent c0f161abe1
commit bc368641a8
10 changed files with 375 additions and 181 deletions

View File

@ -54,7 +54,8 @@ func initLogging(app *fiber.App) {
func initRouter(app *fiber.App) {
app.Get("/", handlers.Home)
app.Get("/about", handlers.About)
app.Get("/login", handlers.Login)
app.Post("/login", handlers.LoginSubmit)
interactiveGroup := app.Group("/interactive")
{