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

Server SSO Success

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

You can close this window now

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

Server SSO Error

Error reason: {.Verb}

Your Netmaker server may not have SSO configured properly. Please visit the docs for more information.

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

`), )