This commit is contained in:
Tomáš Dvořák
2025-10-16 13:32:05 +02:00
commit 12cba639b9
663 changed files with 168914 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{{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}}
+228
View File
@@ -0,0 +1,228 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{.Subject}}</title>
<style type="text/css">
/* Base styles */
body, html {
margin: 0;
padding: 0;
font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: #333333;
background-color: #f5f5f5;
}
/* Email container */
.email-container {
max-width: 600px;
margin: 0 auto;
background: #ffffff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Header */
.email-header {
background: linear-gradient(135deg, {{.PrimaryColor}} 0%, {{.AccentColor}} 100%);
padding: 30px 20px;
text-align: center;
border-bottom: 4px solid {{.AccentColor}};
}
.email-header img {
max-width: 180px;
height: auto;
margin-bottom: 10px;
}
.club-name {
color: #ffffff;
margin: 10px 0 0;
font-size: 24px;
font-weight: 700;
letter-spacing: 0.5px;
}
.club-slogan {
color: #a0aec0;
margin: 5px 0 0;
font-size: 14px;
font-weight: 400;
}
/* Content */
.email-content {
padding: 30px;
color: #2d3748;
font-size: 15px;
line-height: 1.7;
}
.email-content h1 {
color: #2d3748;
margin-top: 0;
font-size: 22px;
font-weight: 600;
}
.email-content p {
margin: 0 0 20px;
}
/* Footer */
.email-footer {
background-color: #f8fafc;
padding: 20px;
text-align: center;
font-size: 13px;
color: #718096;
border-top: 1px solid #e2e8f0;
}
.social-links {
margin: 15px 0;
}
.social-links a {
display: inline-block;
margin: 0 8px;
color: #4a5568;
text-decoration: none;
font-size: 14px;
}
.social-links a:hover {
color: #2b6cb0;
}
.unsubscribe-link {
color: #4a5568;
text-decoration: none;
font-size: 12px;
}
.unsubscribe-link:hover {
text-decoration: underline;
}
/* Buttons */
.btn {
display: inline-block;
padding: 12px 28px;
background: linear-gradient(135deg, {{.AccentColor}} 0%, {{.PrimaryColor}} 100%);
color: #ffffff !important;
text-decoration: none;
border-radius: 6px;
margin: 15px 0;
font-weight: 600;
border: none;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn:hover {
background: linear-gradient(135deg, {{.PrimaryColor}} 0%, {{.AccentColor}} 100%);
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
background: #e2e8f0;
color: #4a5568 !important;
}
.btn-secondary:hover {
background: #cbd5e0;
}
/* Responsive */
@media only screen and (max-width: 600px) {
.email-container {
width: 100% !important;
border-radius: 0;
}
.email-content {
padding: 25px 20px !important;
}
.email-header {
padding: 25px 15px !important;
}
.email-header img {
max-width: 150px !important;
}
.btn {
width: 100% !important;
text-align: center;
margin: 10px 0 !important;
}
</style>
</head>
<body>
<div class="email-container">
<div class="email-header">
<img src="{{if .ClubLogoURL}}{{.ClubLogoURL}}{{else}}https://your-club-logo.png{{end}}" alt="{{.ClubName}} Logo" />
<h1 class="club-name">{{.ClubName}}</h1>
<p class="club-slogan">Srdcem na hřišti, duší v každém zápase</p>
</div>
<div class="email-content">
{{template "content" .}}
{{if or .ManageURL .ClubURL .WebsiteURL}}
<div style="margin: 24px 0; text-align: center;">
{{if .ManageURL}}
<a href="{{.ManageURL}}" 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;">
Upravit předvolby
</a>
{{end}}
{{if .WebsiteURL}}
<a href="{{.WebsiteURL}}" class="btn btn-secondary" style="display:inline-block; padding:12px 24px; margin-left:8px; text-decoration:none; border-radius:6px;">
Otevřít web
</a>
{{else if .ClubURL}}
<a href="{{.ClubURL}}" class="btn btn-secondary" style="display:inline-block; padding:12px 24px; margin-left:8px; text-decoration:none; border-radius:6px;">
Otevřít web
</a>
{{end}}
</div>
{{end}}
</div>
<div class="email-footer">
{{if or .ContactEmail .ContactURL}}
<p>
Máte dotaz?
{{if .ContactURL}}<a href="{{.ContactURL}}" target="_blank">Napsat nám</a>{{end}}
{{if and .ContactURL .ContactEmail}} • {{end}}
{{if .ContactEmail}}<a href="mailto:{{.ContactEmail}}">E-mail</a>{{end}}
</p>
{{end}}
{{if or .FacebookURL .InstagramURL .YouTubeURL .TwitterURL}}
<div class="social-links">
{{if .FacebookURL}}<a href="{{.FacebookURL}}" target="_blank">Facebook</a>{{end}}
{{if .InstagramURL}}<a href="{{.InstagramURL}}" target="_blank">Instagram</a>{{end}}
{{if .YouTubeURL}}<a href="{{.YouTubeURL}}" target="_blank">YouTube</a>{{end}}
{{if .TwitterURL}}<a href="{{.TwitterURL}}" target="_blank">Twitter</a>{{end}}
</div>
{{end}}
<p>{{.ClubName}} &copy; {{now.Format "2006"}}. Všechna práva vyhrazena.</p>
<p>Pokud jste tento email obdrželi omylem, prosíme o jeho smazání.</p>
{{if .UnsubscribeURL}}
<p style="margin-top: 15px;">
<a href="{{.UnsubscribeURL}}" class="unsubscribe-link">Odhlásit se z odběru</a>
</p>
{{end}}
<p style="margin-top: 12px; font-size: 12px; color: #a0aec0;">
Made by <a href="https://sportcreative.cz/myclub" target="_blank" style="color:#718096;">MyClub by Sportcreative</a>
</p>
</div>
</div>
{{if .OpenPixelURL}}
<img src="{{.OpenPixelURL}}" width="1" height="1" alt="" style="display:none;" />
{{end}}
</body>
</html>
+39
View File
@@ -0,0 +1,39 @@
{{define "content"}}
<h2>New Contact Form Submission</h2>
<p>You've received a new message from the contact form on your website.</p>
<table cellpadding="10" cellspacing="0" style="width: 100%; border-collapse: collapse;">
<tr>
<td style="border: 1px solid #e0e0e0; background-color: #f9f9f9; font-weight: bold; width: 150px;">Name:</td>
<td style="border: 1px solid #e0e0e0;">{{.Name}}</td>
</tr>
<tr>
<td style="border: 1px solid #e0e0e0; background-color: #f9f9f9; font-weight: bold;">Email:</td>
<td style="border: 1px solid #e0e0e0;"><a href="mailto:{{.Email}}">{{.Email}}</a></td>
</tr>
<tr>
<td style="border: 1px solid #e0e0e0; background-color: #f9f9f9; font-weight: bold;">Subject:</td>
<td style="border: 1px solid #e0e0e0;">{{.Subject}}</td>
</tr>
<tr>
<td style="border: 1px solid #e0e0e0; background-color: #f9f9f9; font-weight: bold; vertical-align: top;">Message:</td>
<td style="border: 1px solid #e0e0e0; white-space: pre-wrap;">{{.Message}}</td>
</tr>
{{if .IPAddress}}
<tr>
<td style="border: 1px solid #e0e0e0; background-color: #f9f9f9; font-weight: bold;">IP Address:</td>
<td style="border: 1px solid #e0e0e0;">{{.IPAddress}}</td>
</tr>
{{end}}
{{if .UserAgent}}
<tr>
<td style="border: 1px solid #e0e0e0; background-color: #f9f9f9; font-weight: bold;">User Agent:</td>
<td style="border: 1px solid #e0e0e0;">{{.UserAgent}}</td>
</tr>
{{end}}
</table>
<p style="margin-top: 20px;">
<a href="mailto:{{.Email}}" class="btn">Reply to {{.Name}}</a>
</p>
{{end}}
+15
View File
@@ -0,0 +1,15 @@
{{define "content"}}
<h2>{{.Subject}}</h2>
<div style="background-color: #f8f9fa; padding: 20px; border-radius: 5px; margin: 20px 0;">
{{.Content | safeHTML}}
</div>
<p>Děkujeme, že odebíráte náš newsletter. Vaší podpory si velmi vážíme!</p>
<p style="font-size: 12px; color: #6c757d; margin-top: 30px;">
Tento email jste obdrželi, protože odebíráte náš newsletter.
<br>
Pokud si již nepřejete emaily dostávat, můžete se <a href="{{.UnsubscribeURL}}" style="color: #2d74da;">odhlásit z odběru</a>.
</p>
{{end}}
+8
View File
@@ -0,0 +1,8 @@
<html>
<body>
<h1>Vítejte v newsletteru</h1>
<p>Děkujeme za přihlášení k odběru. Klikněte na odkaz níže pro nastavení, jaké zprávy chcete dostávat:</p>
<p><a href="{{.SetupURL}}">Nastavit preference newsletteru</a></p>
<p>Pokud jste se k odběru nepřihlásili, můžete tento e-mail ignorovat nebo se odhlásit.</p>
</body>
</html>
+97
View File
@@ -0,0 +1,97 @@
{{define "content"}}
<div style="max-width: 600px; margin: 0 auto; font-family: Arial, sans-serif; color: #2d3748; background: #ffffff;">
<!-- Header with club colors -->
<div style="background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%); padding: 30px 20px; text-align: center; border-radius: 8px 8px 0 0;">
<img src="https://fotbalclub.cz/logo.png" alt="FK Fotbal Club" style="max-width: 180px; height: auto; margin-bottom: 15px;">
<h1 style="color: #ffffff; margin: 0; font-size: 28px; font-weight: 700;">Vítejte v našem newsletteru!</h1>
</div>
<!-- Main content -->
<div style="padding: 30px 25px; border: 1px solid #e2e8f0; border-top: none; border-radius: 0 0 8px 8px;">
<p style="font-size: 16px; line-height: 1.6; margin: 0 0 25px 0;">
Děkujeme, že jste se přihlásili k odběru našeho newsletteru. Jsme rádi, že jste součástí naší fotbalové komunity a budeme vás pravidelně informovat o nejnovějším dění v klubu.
</p>
<!-- Features grid -->
<div style="margin: 30px 0;">
<h2 style="color: #2d3748; font-size: 20px; margin: 0 0 20px 0; text-align: center; position: relative; padding-bottom: 10px;">
<span style="background: #fff; padding: 0 15px; position: relative; z-index: 1;">Co pro vás připravujeme?</span>
<span style="position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: #e2e8f0; z-index: 0; display: block; margin-top: 15px;"></span>
</h2>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px;">
<div style="background: #f8fafc; border-left: 4px solid #e53e3e; padding: 15px; border-radius: 0 6px 6px 0;">
<h3 style="color: #2b6cb0; margin: 0 0 8px 0; font-size: 16px; display: flex; align-items: center;">
<span style="margin-right: 8px;">📰</span> Novinky z klubu
</h3>
<p style="margin: 0; color: #4a5568; font-size: 14px; line-height: 1.5;">Aktuality, rozhovory a zajímavosti ze zákulisí našeho klubu.</p>
</div>
<div style="background: #f8fafc; border-left: 4px solid #3182ce; padding: 15px; border-radius: 0 6px 6px 0;">
<h3 style="color: #2b6cb0; margin: 0 0 8px 0; font-size: 16px; display: flex; align-items: center;">
<span style="margin-right: 8px;"></span> Zápasy a výsledky
</h3>
<p style="margin: 0; color: #4a5568; font-size: 14px; line-height: 1.5;">Přehled nadcházejících zápasů a reporty z těch odehraných.</p>
</div>
<div style="background: #f8fafc; border-left: 4px solid #38a169; padding: 15px; border-radius: 0 6px 6px 0;">
<h3 style="color: #2b6cb0; margin: 0 0 8px 0; font-size: 16px; display: flex; align-items: center;">
<span style="margin-right: 8px;">🎟️</span> Speciální nabídky
</h3>
<p style="margin: 0; color: #4a5568; font-size: 14px; line-height: 1.5;">Výhody a slevy výhradně pro naše odběratele.</p>
</div>
<div style="background: #f8fafc; border-left: 4px solid #d69e2e; padding: 15px; border-radius: 0 6px 6px 0;">
<h3 style="color: #2b6cb0; margin: 0 0 8px 0; font-size: 16px; display: flex; align-items: center;">
<span style="margin-right: 8px;">👥</span> Rozhovory
</h3>
<p style="margin: 0; color: #4a5568; font-size: 14px; line-height: 1.5;">Rozhovory s hráči, trenéry a dalšími členy klubu.</p>
</div>
</div>
</div>
<!-- Next steps -->
<div style="background: #ebf8ff; border-left: 4px solid #3182ce; padding: 15px; margin: 25px 0; border-radius: 0 6px 6px 0;">
<h3 style="color: #2c5282; margin: 0 0 10px 0; font-size: 16px; display: flex; align-items: center;">
<span style="margin-right: 8px;"></span> Důležité
</h3>
<p style="margin: 0; color: #2c5282; font-size: 14px; line-height: 1.5;">
Aby vám naše e-maily nechyběly, přidejte si adresu <strong>{{.FromEmail}}</strong> do vašich kontaktů.
</p>
</div>
<!-- Unsubscribe notice -->
<div style="margin: 35px 0 25px 0; text-align: center;">
<p style="font-size: 13px; color: #718096; margin: 0 0 15px 0; line-height: 1.5;">
Tento e-mail vám byl zaslán na adresu <strong>{{.Email}}</strong> v rámci odebírání novinek FK Fotbal Club.
</p>
<p style="font-size: 13px; color: #718096; margin: 0; line-height: 1.5;">
<a href="{{.UnsubscribeLink}}" style="color: #2b6cb0; text-decoration: underline;">Odhlásit odběr</a> |
<a href="https://fotbalclub.cz/nastaveni" style="color: #2b6cb0; text-decoration: underline;">Upravit předvolby</a> |
<a href="mailto:help@tdvorak.dev" style="color: #2b6cb0; text-decoration: underline;">Napsat nám</a>
</p>
</div>
<!-- Footer -->
<div style="border-top: 1px solid #e2e8f0; padding-top: 20px; margin-top: 20px; text-align: center;">
<p style="margin: 0 0 15px 0;">
<a href="https://facebook.com/fotbalclub" style="margin: 0 8px; display: inline-block;">
<img src="https://fotbalclub.cz/icons/facebook.png" alt="Facebook" style="width: 24px; height: 24px; opacity: 0.7;">
</a>
<a href="https://instagram.com/fotbalclub" style="margin: 0 8px; display: inline-block;">
<img src="https://fotbalclub.cz/icons/instagram.png" alt="Instagram" style="width: 24px; height: 24px; opacity: 0.7;">
</a>
<a href="https://youtube.com/fotbalclub" style="margin: 0 8px; display: inline-block;">
<img src="https://fotbalclub.cz/icons/youtube.png" alt="YouTube" style="width: 24px; height: 24px; opacity: 0.7;">
</a>
</p>
<p style="margin: 0 0 5px 0; font-size: 12px; color: #a0aec0;">
© {{.Year}} FK Fotbal Club. Všechna práva vyhrazena.
</p>
<p style="margin: 0; font-size: 12px; color: #a0aec0;">
Tento e-mail byl odeslán na adresu {{.Email}}
</p>
</div>
</div>
</div>
{{end}}
@@ -0,0 +1,90 @@
{{define "content"}}
<div style="max-width: 600px; margin: 0 auto; font-family: Arial, sans-serif; color: #2d3748; background: #ffffff;">
<!-- Header with club colors -->
<div style="background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%); padding: 30px 20px; text-align: center; border-radius: 8px 8px 0 0;">
<img src="https://fotbalclub.cz/logo.png" alt="FK Fotbal Club" style="max-width: 180px; height: auto; margin-bottom: 15px;">
<h1 style="color: #ffffff; margin: 0; font-size: 28px; font-weight: 700;">Vítejte zpět u nás!</h1>
</div>
<!-- Main content -->
<div style="padding: 30px 25px; border: 1px solid #e2e8f0; border-top: none; border-radius: 0 0 8px 8px;">
<p style="font-size: 16px; line-height: 1.6; margin: 0 0 25px 0;">
Děkujeme, že jste se znovu přihlásili k odběru našeho newsletteru. Jsme opravdu rádi, že jste se k nám vrátili a těšíme se na vaši zpětnou vazbu!
</p>
<!-- What's new section -->
<div style="margin: 30px 0;">
<h2 style="color: #2d3748; font-size: 20px; margin: 0 0 20px 0; text-align: center; position: relative; padding-bottom: 10px;">
<span style="background: #fff; padding: 0 15px; position: relative; z-index: 1;">Co je u nás nového?</span>
<span style="position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: #e2e8f0; z-index: 0; display: block; margin-top: 15px;"></span>
</h2>
<div style="display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px;">
<div style="background: #f8fafc; border-left: 4px solid #e53e3e; padding: 15px; border-radius: 0 6px 6px 0;">
<h3 style="color: #2b6cb0; margin: 0 0 8px 0; font-size: 16px; display: flex; align-items: center;">
<span style="margin-right: 8px;">👕</span> Nové dresy {{.Year}}
</h3>
<p style="margin: 0; color: #4a5568; font-size: 14px; line-height: 1.5;">Představili jsme zbrusu nové dresy na sezónu {{.Year}}. Podívejte se na ně v našem <a href="https://fotbalclub.cz/fotogalerie" style="color: #2b6cb0; text-decoration: underline;">fotoalbu</a>.</p>
</div>
<div style="background: #f8fafc; border-left: 4px solid #3182ce; padding: 15px; border-radius: 0 6px 6px 0;">
<h3 style="color: #2b6cb0; margin: 0 0 8px 0; font-size: 16px; display: flex; align-items: center;">
<span style="margin-right: 8px;">📅</span> Aktuální rozvrh zápasů
</h3>
<p style="margin: 0; color: #4a5568; font-size: 14px; line-height: 1.5;">Připravili jsme pro vás kompletní rozvrh zápasů na nadcházející měsíce. <a href="https://fotbalclub.cz/zapasy" style="color: #2b6cb0; text-decoration: underline;">Zobrazit kalendář</a>.</p>
</div>
<div style="background: #f8fafc; border-left: 4px solid #38a169; padding: 15px; border-radius: 0 6px 6px 0;">
<h3 style="color: #2b6cb0; margin: 0 0 8px 0; font-size: 16px; display: flex; align-items: center;">
<span style="margin-right: 8px;">🏟️</span> Akce pro fanoušky
</h3>
<p style="margin: 0; color: #4a5568; font-size: 14px; line-height: 1.5;">Připravili jsme sérii akcí pro naše věrné fanoušky. Více informací naleznete v <a href="https://fotbalclub.cz/akce" style="color: #2b6cb0; text-decoration: underline;">kalendáři akcí</a>.</p>
</div>
</div>
</div>
<!-- Next steps -->
<div style="background: #ebf8ff; border-left: 4px solid #3182ce; padding: 15px; margin: 25px 0; border-radius: 0 6px 6px 0;">
<h3 style="color: #2c5282; margin: 0 0 10px 0; font-size: 16px; display: flex; align-items: center;">
<span style="margin-right: 8px;">📱</span> Sledujte nás
</h3>
<p style="margin: 0; color: #2c5282; font-size: 14px; line-height: 1.5;">
Sledujte nás na sociálních sítích a buďte mezi prvními, kdo se dozví o novinkách z našeho klubu.
</p>
<div style="margin-top: 10px;">
<a href="https://facebook.com/fotbalclub" style="margin-right: 10px; display: inline-block;">
<img src="https://fotbalclub.cz/icons/facebook.png" alt="Facebook" style="width: 24px; height: 24px; opacity: 0.8;">
</a>
<a href="https://instagram.com/fotbalclub" style="margin-right: 10px; display: inline-block;">
<img src="https://fotbalclub.cz/icons/instagram.png" alt="Instagram" style="width: 24px; height: 24px; opacity: 0.8;">
</a>
<a href="https://youtube.com/fotbalclub" style="display: inline-block;">
<img src="https://fotbalclub.cz/icons/youtube.png" alt="YouTube" style="width: 24px; height: 24px; opacity: 0.8;">
</a>
</div>
</div>
<!-- Unsubscribe notice -->
<div style="margin: 35px 0 25px 0; text-align: center;">
<p style="font-size: 13px; color: #718096; margin: 0 0 15px 0; line-height: 1.5;">
Tento e-mail vám byl zaslán na adresu <strong>{{.Email}}</strong> v rámci odebírání novinek FK Fotbal Club.
</p>
<p style="font-size: 13px; color: #718096; margin: 0; line-height: 1.5;">
<a href="{{.UnsubscribeLink}}" style="color: #2b6cb0; text-decoration: underline;">Odhlásit odběr</a> |
<a href="https://fotbalclub.cz/nastaveni" style="color: #2b6cb0; text-decoration: underline;">Upravit předvolby</a> |
<a href="mailto:help@tdvorak.dev" style="color: #2b6cb0; text-decoration: underline;">Napsat nám</a>
</p>
</div>
<!-- Footer -->
<div style="border-top: 1px solid #e2e8f0; padding-top: 20px; margin-top: 20px; text-align: center;">
<p style="margin: 0 0 5px 0; font-size: 12px; color: #a0aec0;">
© {{.Year}} FK Fotbal Club. Všechna práva vyhrazena.
</p>
<p style="margin: 0; font-size: 12px; color: #a0aec0;">
Tento e-mail byl odeslán na adresu {{.Email}}
</p>
</div>
</div>
</div>
{{end}}
+9
View File
@@ -0,0 +1,9 @@
{{define "content"}}
<h1>Reset hesla</h1>
<p>Obdrželi jsme požadavek na resetování hesla k vašemu účtu.</p>
<p>Pokud jste o reset požádali vy, pokračujte kliknutím na tlačítko níže. Odkaz vyprší do 60 minut.</p>
<div style="text-align:center; margin: 24px 0;">
<a href="{{.ResetLink}}" class="btn">Resetovat heslo</a>
</div>
<p>Pokud jste o reset hesla nežádali, tento e-mail ignorujte. Vaše heslo zůstane beze změny.</p>
{{end}}
+10
View File
@@ -0,0 +1,10 @@
{{define "content"}}
<h1>Ověřovací kód pro reset hesla</h1>
<p>Pro pokračování v obnově hesla zadejte tento kód do aplikace. Kód je platný <strong>10 minut</strong>.</p>
<div style="text-align:center; margin: 24px 0;">
<div style="display:inline-block; font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-weight:700; letter-spacing:6px; font-size:32px; padding:16px 24px; border-radius:8px; background:#f1f5f9; color:#0f172a; border:1px solid #e2e8f0;">
{{.Code}}
</div>
</div>
<p>Pokud jste o reset nežádali, tento email ignorujte. Vaše heslo zůstane beze změny.</p>
{{end}}