187 lines
6.2 KiB
HTML
187 lines
6.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>SerpentRace - Konto verifizieren</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
.email-container {
|
|
background-color: #ffffff;
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
border-bottom: 2px solid #4CAF50;
|
|
padding-bottom: 20px;
|
|
}
|
|
.logo {
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
color: #2E7D32;
|
|
margin-bottom: 10px;
|
|
}
|
|
.subtitle {
|
|
color: #666;
|
|
font-size: 16px;
|
|
}
|
|
.content {
|
|
margin-bottom: 30px;
|
|
}
|
|
.greeting {
|
|
font-size: 18px;
|
|
margin-bottom: 20px;
|
|
color: #2E7D32;
|
|
}
|
|
.message {
|
|
font-size: 16px;
|
|
margin-bottom: 25px;
|
|
line-height: 1.8;
|
|
}
|
|
.verification-button {
|
|
display: inline-block;
|
|
background-color: #4CAF50;
|
|
color: white !important;
|
|
padding: 15px 30px;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
margin: 20px 0;
|
|
transition: background-color 0.3s;
|
|
}
|
|
.verification-button:hover {
|
|
background-color: #45a049;
|
|
}
|
|
.button-container {
|
|
text-align: center;
|
|
margin: 30px 0;
|
|
}
|
|
.alternative-link {
|
|
background-color: #f9f9f9;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
margin: 20px 0;
|
|
border-left: 4px solid #4CAF50;
|
|
}
|
|
.alternative-link p {
|
|
margin: 5px 0;
|
|
font-size: 14px;
|
|
}
|
|
.token-display {
|
|
background-color: #f0f0f0;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
font-family: monospace;
|
|
font-size: 14px;
|
|
word-break: break-all;
|
|
margin: 10px 0;
|
|
}
|
|
.footer {
|
|
margin-top: 40px;
|
|
padding-top: 20px;
|
|
border-top: 1px solid #eee;
|
|
font-size: 14px;
|
|
color: #666;
|
|
text-align: center;
|
|
}
|
|
.warning {
|
|
background-color: #fff3cd;
|
|
border: 1px solid #ffeaa7;
|
|
color: #856404;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
margin: 20px 0;
|
|
}
|
|
.support-info {
|
|
background-color: #e3f2fd;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
margin: 20px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="email-container">
|
|
<div class="header">
|
|
<div class="logo">🐍 {{ companyName }}</div>
|
|
<div class="subtitle">Konto verifizieren</div>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<div class="greeting">
|
|
Hallo {{ userName }}! 👋
|
|
</div>
|
|
|
|
<div class="message">
|
|
Willkommen bei {{ companyName }}! Wir freuen uns, dass Sie unserer Gaming-Community beigetreten sind.
|
|
<br><br>
|
|
Um Ihre Registrierung abzuschließen und Ihr Konto zu nutzen, verifizieren Sie bitte Ihre E-Mail-Adresse, indem Sie auf die Schaltfläche unten klicken:
|
|
</div>
|
|
|
|
<div class="button-container">
|
|
<a href="{{ verificationUrl }}" class="verification-button">
|
|
✅ Mein Konto verifizieren
|
|
</a>
|
|
</div>
|
|
|
|
<div class="alternative-link">
|
|
<p><strong>Können Sie nicht auf die Schaltfläche klicken?</strong> Kopieren Sie diesen Link und fügen Sie ihn in Ihren Browser ein:</p>
|
|
<p style="word-break: break-all; color: #4CAF50;">{{ verificationUrl }}</p>
|
|
</div>
|
|
|
|
<div class="alternative-link">
|
|
<p><strong>Verifizierungstoken:</strong></p>
|
|
<div class="token-display">{{ verificationToken }}</div>
|
|
<p style="font-size: 12px; color: #666;">Sie können diesen Token auch manuell verwenden, falls erforderlich.</p>
|
|
</div>
|
|
|
|
<div class="warning">
|
|
<strong>⚠️ Sicherheitshinweis:</strong>
|
|
<br>
|
|
• Dieser Verifizierungslink läuft in 24 Stunden ab
|
|
• Falls Sie kein Konto bei {{ companyName }} erstellt haben, ignorieren Sie diese E-Mail bitte
|
|
• Teilen Sie Ihren Verifizierungstoken niemals mit anderen
|
|
</div>
|
|
|
|
<div class="message">
|
|
Nach der Verifizierung können Sie:
|
|
<br>
|
|
✨ Ihre Spieldecks erstellen und verwalten
|
|
<br>
|
|
🎮 An Gaming-Turnieren und Wettbewerben teilnehmen
|
|
<br>
|
|
👥 Sich mit anderen Spielern in Ihrer Organisation verbinden
|
|
<br>
|
|
📊 Ihre Gaming-Statistiken und Fortschritte verfolgen
|
|
</div>
|
|
</div>
|
|
|
|
<div class="support-info">
|
|
<p><strong>Benötigen Sie Hilfe?</strong></p>
|
|
<p>Falls Sie Fragen haben oder auf Probleme stoßen, kontaktieren Sie bitte unser Support-Team unter
|
|
<a href="mailto:{{ supportEmail }}" style="color: #4CAF50;">{{ supportEmail }}</a></p>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>Diese E-Mail wurde von {{ companyName }} gesendet</p>
|
|
<p>Dies ist eine automatische Nachricht, bitte antworten Sie nicht auf diese E-Mail.</p>
|
|
<p style="margin-top: 15px; font-size: 12px;">
|
|
© 2025 {{ companyName }}. Alle Rechte vorbehalten.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|