From 699486cbebc104b26fd3bc3d521c47a4827f2909 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Wed, 21 Oct 2020 09:11:15 +0530 Subject: minor changes, maybe --- main.go | 4 ++-- templates/new.index.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 5be5f68..528eb09 100644 --- a/main.go +++ b/main.go @@ -4,7 +4,7 @@ import ( // "log" "net/http" "os" - + "fmt" "github.com/gin-gonic/gin" _ "github.com/heroku/x/hmetrics/onload" ) @@ -37,11 +37,11 @@ func main() { router.GET("/new", func(c *gin.Context) { c.HTML(http.StatusOK, "new.index.html", nil) + name := c.PostFormArray("name") }) router.GET("/site-down", func(c *gin.Context) { c.HTML(http.StatusOK, "maintain.html", nil) }) - router.Run(":" + port) } diff --git a/templates/new.index.html b/templates/new.index.html index d01a1ef..565b80e 100644 --- a/templates/new.index.html +++ b/templates/new.index.html @@ -30,7 +30,7 @@

Enter someone's name to send them to hell.

-
+
-- cgit v1.2.3