275 lines
8.2 KiB
HTML
275 lines
8.2 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>
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background: #0a0a0f;
|
|
color: #ffffff;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.email-container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
background: #0a0a0f;
|
|
background-image:
|
|
radial-gradient(circle at 20% 80%, #1a1a2e 0%, transparent 50%),
|
|
radial-gradient(circle at 80% 20%, #16213e 0%, transparent 50%),
|
|
radial-gradient(circle at 40% 40%, #0f3460 0%, transparent 50%);
|
|
}
|
|
|
|
.email-header {
|
|
text-align: center;
|
|
padding: 3rem 2rem 2rem;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
background: linear-gradient(135deg, #00d4ff, #ff6b35, #ffd700);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
margin-bottom: 0.5rem;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.tagline {
|
|
color: #94a3b8;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.email-content {
|
|
background: rgba(30, 41, 59, 0.95);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid rgba(51, 65, 85, 0.3);
|
|
margin: 0 2rem;
|
|
padding: 2.5rem;
|
|
border-radius: 1.5rem;
|
|
box-shadow:
|
|
0 25px 50px rgba(0, 0, 0, 0.3),
|
|
0 0 0 1px rgba(0, 212, 255, 0.1);
|
|
}
|
|
|
|
.welcome-title {
|
|
font-size: 1.75rem;
|
|
font-weight: 600;
|
|
color: #e2e8f0;
|
|
text-align: center;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.welcome-message {
|
|
color: #cbd5e1;
|
|
font-size: 1rem;
|
|
margin-bottom: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.cta-button {
|
|
display: inline-block;
|
|
width: 100%;
|
|
padding: 1rem 2rem;
|
|
background: linear-gradient(135deg, #00d4ff, #0891b2);
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 0.75rem;
|
|
font-weight: 600;
|
|
font-size: 1rem;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
|
|
transition: all 0.2s ease;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 16px rgba(0, 212, 255, 0.4);
|
|
}
|
|
|
|
.features-section {
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.features-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: #e2e8f0;
|
|
margin-bottom: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.feature-item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 1rem;
|
|
padding: 1rem;
|
|
background: rgba(51, 65, 85, 0.3);
|
|
border-radius: 0.75rem;
|
|
border: 1px solid rgba(0, 212, 255, 0.1);
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 1.5rem;
|
|
margin-right: 1rem;
|
|
width: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.feature-text {
|
|
color: #cbd5e1;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.email-footer {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
color: #64748b;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.footer-links {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.footer-links a {
|
|
color: #00d4ff;
|
|
text-decoration: none;
|
|
margin: 0 1rem;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: #0891b2;
|
|
}
|
|
|
|
.divider {
|
|
height: 1px;
|
|
background: linear-gradient(90deg, transparent, #334155, transparent);
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
/* Mobile Responsive */
|
|
@media (max-width: 600px) {
|
|
.email-content {
|
|
margin: 0 1rem;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.email-header {
|
|
padding: 2rem 1rem 1rem;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.welcome-title {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.feature-item {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.feature-icon {
|
|
margin-right: 0;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
}
|
|
</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>
|
|
|
|
<!-- Main 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>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<!-- Features Section -->
|
|
<div class="features-section">
|
|
<h2 class="features-title">Was dich erwartet:</h2>
|
|
|
|
<div class="feature-item">
|
|
<div class="feature-icon">🏃♂️</div>
|
|
<div class="feature-text">
|
|
<strong>Timer-Tracking:</strong> Erfasse deine Zeiten und verfolge deinen Fortschritt
|
|
</div>
|
|
</div>
|
|
|
|
<div class="feature-item">
|
|
<div class="feature-icon">🏆</div>
|
|
<div class="feature-text">
|
|
<strong>Leaderboards:</strong> Vergleiche dich mit anderen Spielern und erreiche die Spitze
|
|
</div>
|
|
</div>
|
|
|
|
<div class="feature-item">
|
|
<div class="feature-icon">📊</div>
|
|
<div class="feature-text">
|
|
<strong>Statistiken:</strong> Detaillierte Analysen deiner Performance und Verbesserungen
|
|
</div>
|
|
</div>
|
|
|
|
<div class="feature-item">
|
|
<div class="feature-icon">🌍</div>
|
|
<div class="feature-text">
|
|
<strong>Multi-Location:</strong> Spiele an verschiedenen Standorten und sammle Erfahrungen
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<div class="email-footer">
|
|
<p>
|
|
Falls du dich nicht registriert hast, kannst du diese E-Mail ignorieren.
|
|
</p>
|
|
|
|
<div class="footer-links">
|
|
<a href="{{ .SiteURL }}">Zur Website</a>
|
|
<a href="{{ .SiteURL }}/support">Support</a>
|
|
<a href="{{ .SiteURL }}/privacy">Datenschutz</a>
|
|
</div>
|
|
|
|
<p style="margin-top: 1.5rem; font-size: 0.75rem; color: #64748b;">
|
|
© 2024 NinjaCross. Alle Rechte vorbehalten.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|