21 lines
483 B
Go
21 lines
483 B
Go
|
package route
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/pkg/errors"
|
||
|
"gitlab.com/wpetit/goweb/middleware/container"
|
||
|
"gitlab.com/wpetit/goweb/service/template"
|
||
|
)
|
||
|
|
||
|
func serveConsentPage(w http.ResponseWriter, r *http.Request) {
|
||
|
ctn := container.Must(r.Context())
|
||
|
tmpl := template.Must(ctn)
|
||
|
|
||
|
data := extendTemplateData(w, r, template.Data{})
|
||
|
|
||
|
if err := tmpl.RenderPage(w, "consent.html.tmpl", data); err != nil {
|
||
|
panic(errors.Wrapf(err, "could not render '%s' page", r.URL.Path))
|
||
|
}
|
||
|
}
|