package auth import "html/template" type ssoCallbackTemplateConfig struct { User string Verb string } var ssoCallbackTemplate = template.Must( template.New("ssocallback").Parse(`
You can close this window now
`), ) var ssoErrCallbackTemplate = template.Must( template.New("ssocallback").Parse(`If you feel this is a mistake, please contact your network administrator.
`), )