Files
libredesk/static/email-templates/reset-password.html
T

21 lines
752 B
HTML

{{ define "reset-password" }}
{{ template "header" . }}
<h1>Reset your password</h1>
<p>We received a request to reset your password. Click the button below to create a new one:</p>
<div style="text-align: center; margin: 28px 0;">
<a href="{{ RootURL }}/set-password?token={{ .ResetToken }}" class="button"
style="background-color: #18181b; color: #fafafa; display: inline-block; border-radius: 6px; padding: 12px 32px; text-decoration: none; font-weight: 500; font-size: 14px;">
Reset Password
</a>
</div>
<p class="text-muted" style="color: #71717a; font-size: 14px;">
If you didn't request this change, you can safely ignore this email. Your password will remain unchanged.
</p>
{{ template "footer" . }}
{{ end }}