mirror of
https://github.com/pocketbase/pocketbase.git
synced 2025-01-26 15:03:00 +02:00
27 lines
596 B
Go
27 lines
596 B
Go
|
package templates
|
||
|
|
||
|
// Available variables:
|
||
|
//
|
||
|
// ```
|
||
|
// User *models.User
|
||
|
// AppName string
|
||
|
// AppUrl string
|
||
|
// Token string
|
||
|
// ActionUrl string
|
||
|
// ```
|
||
|
const UserConfirmEmailChangeBody = `
|
||
|
{{define "content"}}
|
||
|
<p>Hello,</p>
|
||
|
<p>Click on the button below to confirm your new email address.</p>
|
||
|
<p>
|
||
|
<a class="btn" href="{{.ActionUrl}}">Confirm new email</a>
|
||
|
<a class="fallback-link" href="{{.ActionUrl}}">{{.ActionUrl}}</a>
|
||
|
</p>
|
||
|
<p><i>If you didn’t ask to change your email address, you can ignore this email.</i></p>
|
||
|
<p>
|
||
|
Thanks,<br/>
|
||
|
{{.AppName}} team
|
||
|
</p>
|
||
|
{{end}}
|
||
|
`
|