package main

import (
	"html/template"
	"net/http"
)

const tmpl = ""

func Concat(r *http.Request) template.HTML {
	customerId := r.URL.Query().Get("id")
	// ruleid: unescaped-data-in-htmlattr
	tmpl := "<html><body><h1>" + customerId + "</h1></body></html>"
	return template.HTMLAttr(tmpl)
}
