package templates import ( "text/template" ) // HTMLEmailTemplate the template of email that the user will receive for identity verification. var HTMLEmailTemplate *template.Template func init() { t, err := template.New("html_email_template").Parse(emailHTMLContent) if err != nil { panic(err) } HTMLEmailTemplate = t } const emailHTMLContent = ` Authelia
 

{{.title}}

 
 
 
This email has been sent to you in order to validate your identity. If you did not initiate the process your credentials might have been compromised. You should reset your password and contact an administrator.
 
{{.button}}
 
 
 
 
Please contact an administrator if you did not initiate the process.
`