Ajouter routes exemples selon figma #25

Merged
vlbeaudoin merged 3 commits from feature/squelette-routes into main 2023-03-24 18:28:37 -04:00
Showing only changes of commit eeccc0755f - Show all commits

View file

@ -64,7 +64,7 @@ func Execute() {
e.GET("/documentation", handleDocumentation) e.GET("/documentation", handleDocumentation)
e.GET("/nous-contacter", handleNousContacter) e.GET("/formulaires", handleFormulaires)
e.Logger.Fatal(e.Start(":8080")) e.Logger.Fatal(e.Start(":8080"))
} }
@ -111,8 +111,8 @@ func handleVieEtudianteOrganisme(c echo.Context) error {
func handleDocumentation(c echo.Context) error { func handleDocumentation(c echo.Context) error {
return c.String(http.StatusOK, "Documentation") return c.String(http.StatusOK, "Documentation")
} }
func handleNousContacter(c echo.Context) error { func handleFormulaires(c echo.Context) error {
return c.String(http.StatusOK, "Nous Contacter") return c.String(http.StatusOK, "Formulaires")
} }
// CSS Handlers // CSS Handlers