Files
Ninjaserver/public/email-templates/welcome-email-compatible.html
2025-09-23 14:13:24 +02:00

209 lines
6.0 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Willkommen bei NinjaCross</title>
<style>
/* E-Mail-Client-kompatible Styles */
body {
font-family: Arial, sans-serif;
background-color: #0a0a0f;
color: #ffffff;
margin: 0;
padding: 20px;
line-height: 1.6;
}
.email-container {
max-width: 600px;
margin: 0 auto;
background-color: #1e293b;
border: 2px solid #334155;
border-radius: 15px;
overflow: hidden;
}
.email-header {
background-color: #00d4ff;
padding: 30px 20px;
text-align: center;
}
.logo {
font-size: 28px;
font-weight: bold;
color: #ffffff;
margin-bottom: 5px;
}
.tagline {
color: #e2e8f0;
font-size: 14px;
}
.email-content {
padding: 30px 20px;
background-color: #1e293b;
}
.welcome-title {
font-size: 24px;
font-weight: bold;
color: #e2e8f0;
text-align: center;
margin-bottom: 20px;
}
.welcome-message {
color: #cbd5e1;
font-size: 16px;
text-align: center;
margin-bottom: 30px;
}
.cta-button {
display: block;
width: 100%;
max-width: 300px;
margin: 0 auto 30px;
padding: 15px 30px;
background-color: #00d4ff;
color: #ffffff;
text-decoration: none;
border-radius: 10px;
font-weight: bold;
font-size: 16px;
text-align: center;
text-transform: uppercase;
}
.features {
margin-top: 30px;
}
.feature {
background-color: #334155;
border: 1px solid #475569;
border-radius: 10px;
padding: 15px;
margin-bottom: 15px;
}
.feature-icon {
font-size: 20px;
margin-right: 10px;
}
.feature-text {
color: #cbd5e1;
font-size: 14px;
}
.email-footer {
background-color: #0f172a;
padding: 20px;
text-align: center;
color: #64748b;
font-size: 12px;
}
.footer a {
color: #00d4ff;
text-decoration: none;
margin: 0 10px;
}
/* Mobile Responsive */
@media (max-width: 600px) {
.email-container {
margin: 0 10px;
}
.email-content {
padding: 20px 15px;
}
.logo {
font-size: 24px;
}
.welcome-title {
font-size: 20px;
}
}
</style>
</head>
<body>
<div class="email-container">
<!-- Header -->
<div class="email-header">
<div class="logo">🥷 NINJACROSS</div>
<div class="tagline">Die ultimative Timer-Rangliste</div>
</div>
<!-- Content -->
<div class="email-content">
<h1 class="welcome-title">Willkommen bei NinjaCross! 🎉</h1>
<p class="welcome-message">
Vielen Dank für deine Registrierung! Du bist jetzt Teil der NinjaCross-Community.
Bestätige deine E-Mail-Adresse, um dein Konto zu aktivieren und sofort loszulegen.
</p>
<a href="{{ .ConfirmationURL }}" class="cta-button">
✉️ E-Mail bestätigen
</a>
<!-- Features -->
<div class="features">
<div class="feature">
<span class="feature-icon">🏃‍♂️</span>
<span class="feature-text">
<strong>Timer-Tracking:</strong> Erfasse deine Zeiten und verfolge deinen Fortschritt
</span>
</div>
<div class="feature">
<span class="feature-icon">🏆</span>
<span class="feature-text">
<strong>Leaderboards:</strong> Vergleiche dich mit anderen Spielern und erreiche die Spitze
</span>
</div>
<div class="feature">
<span class="feature-icon">📊</span>
<span class="feature-text">
<strong>Statistiken:</strong> Detaillierte Analysen deiner Performance und Verbesserungen
</span>
</div>
<div class="feature">
<span class="feature-icon">🌍</span>
<span class="feature-text">
<strong>Multi-Location:</strong> Spiele an verschiedenen Standorten und sammle Erfahrungen
</span>
</div>
</div>
</div>
<!-- Footer -->
<div class="email-footer">
<p>
Falls du dich nicht registriert hast, kannst du diese E-Mail ignorieren.
</p>
<p style="margin-top: 15px;">
<a href="{{ .SiteURL }}">Zur Website</a>
<a href="{{ .SiteURL }}/support">Support</a>
<a href="{{ .SiteURL }}/privacy">Datenschutz</a>
</p>
<p style="margin-top: 15px;">
© 2024 NinjaCross. Alle Rechte vorbehalten.
</p>
</div>
</div>
</body>
</html>