mirror of
https://github.com/pocketbase/pocketbase.git
synced 2025-01-10 00:43:36 +02:00
26 lines
582 B
Go
26 lines
582 B
Go
|
package templates
|
||
|
|
||
|
// Available variables:
|
||
|
//
|
||
|
// ```
|
||
|
// Admin *models.Admin
|
||
|
// AppName string
|
||
|
// AppUrl string
|
||
|
// Token string
|
||
|
// ActionUrl string
|
||
|
// ```
|
||
|
const AdminPasswordResetBody = `
|
||
|
{{define "content"}}
|
||
|
<p>Hello,</p>
|
||
|
|
||
|
<p>Follow this link to reset your admin password for {{.AppName}}.</p>
|
||
|
|
||
|
<p>
|
||
|
<a class="btn" href="{{.ActionUrl}}">Reset password</a>
|
||
|
<a class="fallback-link" href="{{.ActionUrl}}">{{.ActionUrl}}</a>
|
||
|
</p>
|
||
|
|
||
|
<p><i>If you did not request to reset your password, please ignore this email and the link will expire on its own.</i></p>
|
||
|
{{end}}
|
||
|
`
|