11 lines
345 B
HTML
11 lines
345 B
HTML
{{define "body"}}
|
|
<h2>Welcome to {{.AppName}}{{if .Name}}, {{.Name}}{{end}}!</h2>
|
|
<p>Your account is ready. Start exploring everything {{.AppName}} has to offer.</p>
|
|
|
|
{{template "button" .}}
|
|
|
|
{{- if .SupportEmail}}
|
|
<p class="text-muted">Have questions? Reach us at <a href="mailto:{{.SupportEmail}}">{{.SupportEmail}}</a>.</p>
|
|
{{- end}}
|
|
{{end}}
|