package auth import "html/template" type ssoCallbackTemplateConfig struct { User string Verb string } var ssoCallbackTemplate = template.Must( template.New("ssocallback").Parse(` Netmaker
Netmaker

{{.User}} has been successfully {{.Verb}}


You may now close this window.

`), ) var ssoErrCallbackTemplate = template.Must( template.New("ssocallback").Parse(` Netmaker
Netmaker

{{.User}} unable to join network: {{.Verb}}


If you feel this is a mistake, please contact your network administrator.

`), )