package logic import ( "github.com/gin-gonic/gin" ) func Index(c *gin.Context) { data := gin.H{ "Title": "Welcome to " + c.Request.Host, "Message": "This is " + c.Request.Host + " index page.", } c.HTML(200, "authentication-login.html", data) }