mirror of
https://github.com/pocketbase/pocketbase.git
synced 2025-01-09 10:07:17 +02:00
22 lines
542 B
Go
22 lines
542 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}}" target="_blank" rel="noopener">Reset password</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}}
|
|
`
|