package handlers import ( "os" "github.com/gofiber/fiber/v2" ) func Form(c *fiber.Ctx) error { if os.Getenv("DISABLE_FORM") == "true" { c.Set("Content-Type", "text/html") c.SendStatus(fiber.StatusNotFound) return c.SendString("Form Disabled") } else { c.Set("Content-Type", "text/html") return c.SendString(html) } } const html = `