Files
MyClub/templates/emails/admin_welcome.html
T
Tomáš Dvořák 12cba639b9 upload
2025-10-16 13:32:05 +02:00

28 lines
1.1 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;">
<h1 style="margin-top:0;">Vítejte v MyClub</h1>
<p>Dobrý den,</p>
<p>hlavní administrátorský účet pro váš klub byl úspěšně vytvořen. Nyní se můžete přihlásit do administrace a dokončit nastavení webu.</p>
<p>
{{if .LoginURL}}
<a href="{{.LoginURL}}" class="btn">Přihlásit se</a>
{{end}}
{{if .DashboardURL}}
<a href="{{.DashboardURL}}" class="btn btn-secondary" style="margin-left:8px;">Otevřít administraci</a>
{{end}}
{{if .DocsURL}}
<a href="{{.DocsURL}}" class="btn btn-secondary" style="margin-left:8px;">Dokumentace</a>
{{end}}
</p>
<h2>Co doporučujeme udělat jako první</h2>
<ul>
<li>Nastavit klubové barvy a logo v nastavení.</li>
<li>Zkontrolovat SMTP nastavení pro odesílání emailů.</li>
<li>Přidat první články, zápasy a hráče.</li>
</ul>
{{if .SupportEmail}}
<p>Potřebujete pomoc? Napište nám na <a href="mailto:{{.SupportEmail}}">{{.SupportEmail}}</a>.</p>
{{end}}
</div>
{{end}}