mirror of
https://github.com/abhinavxd/libredesk.git
synced 2026-09-22 02:23:32 +00:00
31 lines
987 B
HTML
31 lines
987 B
HTML
{{ define "welcome" }}
|
|
{{ template "header" . }}
|
|
|
|
<h1>
|
|
{{ if ne SiteName "" }}
|
|
Welcome to {{ SiteName }}
|
|
{{ else }}
|
|
Welcome to Libredesk
|
|
{{ end }}
|
|
</h1>
|
|
|
|
<p>A new account has been created for you with <strong>{{ .Email }}</strong>.</p>
|
|
|
|
<p>Click the button below to set your password and get started:</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;">
|
|
Set Your Password
|
|
</a>
|
|
</div>
|
|
|
|
<p class="text-muted" style="color: #71717a; font-size: 14px;">This link will expire in 24 hours.</p>
|
|
|
|
<p style="margin-top: 24px; padding-top: 20px; border-top: 1px solid #e4e4e7;">
|
|
After setting your password, you can <a href="{{ RootURL }}">log in here</a>.
|
|
</p>
|
|
|
|
{{ template "footer" . }}
|
|
{{ end }}
|