Files
MyClub/templates/emails/fan_account_created.html
T
Tomas Dvorak 70ea0c3c91 dev day #69
2025-10-23 22:26:50 +02:00

33 lines
2.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{define "content"}}
<div style="max-width:600px;margin:0 auto;font-family:Arial, Helvetica, sans-serif;color:#2d3748;background:#ffffff;">
<div style="background: linear-gradient(135deg, {{.PrimaryColor}} 0%, {{.AccentColor}} 100%); padding: 24px 20px; text-align:center; border-radius: 8px 8px 0 0;">
<h1 style="color:#fff; margin:0; font-size:24px; font-weight:700;">Váš fan účet byl vytvořen</h1>
</div>
<div style="padding:24px; border:1px solid #e2e8f0; border-top:none; border-radius: 0 0 8px 8px;">
<p style="margin:0 0 16px 0; line-height:1.6;">
Děkujeme za přihlášení k odběru novinek. Současně jsme pro vás vytvořili fanouškovský účet, se kterým budete mít v budoucnu více možností nastavení.
</p>
<div style="background:#f7fafc; border-left:4px solid {{.AccentColor}}; padding:12px 16px; border-radius:0 6px 6px 0; margin:16px 0;">
<p style="margin:0 0 6px 0;">Přihlašovací údaje:</p>
<p style="margin:0;">
<strong>Email:</strong> {{.Email}}<br/>
<strong>Heslo:</strong> {{.Password}}
</p>
</div>
<p style="margin:0 0 16px 0;">Po přihlášení si můžete heslo kdykoliv změnit a upravit osobní údaje.</p>
<div style="text-align:center; margin:20px 0;">
<a href="{{.LoginURL}}" class="btn" style="display:inline-block; padding:12px 24px; background: linear-gradient(135deg, {{.AccentColor}} 0%, {{.PrimaryColor}} 100%); color:#fff !important; text-decoration:none; border-radius:6px; font-weight:600;">Přihlásit se</a>
<a href="{{.ResetURL}}" class="btn btn-secondary" style="display:inline-block; padding:12px 24px; margin-left:8px; text-decoration:none; border-radius:6px; border:1px solid #e2e8f0; color:#2d3748;">Změnit heslo</a>
</div>
<hr style="border:none; border-top:1px solid #e2e8f0; margin:20px 0;"/>
<p style="margin:0 0 10px 0;">Správa newsletteru:</p>
<div style="text-align:center;">
<a href="{{.ManageURL}}" class="btn" style="display:inline-block; padding:10px 20px; background: linear-gradient(135deg, {{.PrimaryColor}} 0%, {{.AccentColor}} 100%); color:#fff !important; text-decoration:none; border-radius:6px; font-weight:600;">Upravit předvolby</a>
{{if .UnsubscribeURL}}
<div style="margin-top:8px; font-size:13px;"><a href="{{.UnsubscribeURL}}" style="color:#2b6cb0;">Odhlásit odběr</a></div>
{{end}}
</div>
</div>
</div>
{{end}}