114 lines
3.5 KiB
HTML
114 lines
3.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Verify Your Email to Create a Campaign</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
.container {
|
|
background-color: #f9f9f9;
|
|
border-radius: 8px;
|
|
padding: 30px;
|
|
border: 1px solid #e0e0e0;
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
.logo {
|
|
color: #d73027;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
}
|
|
.content {
|
|
background-color: white;
|
|
padding: 20px;
|
|
border-radius: 6px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.cta-button {
|
|
display: inline-block;
|
|
background-color: #d73027;
|
|
color: white !important;
|
|
padding: 14px 28px;
|
|
text-decoration: none;
|
|
border-radius: 4px;
|
|
margin: 20px 0;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
.footer {
|
|
text-align: center;
|
|
font-size: 12px;
|
|
color: #666;
|
|
margin-top: 30px;
|
|
}
|
|
.info {
|
|
color: #3498db;
|
|
font-size: 14px;
|
|
margin-top: 20px;
|
|
padding: 15px;
|
|
background-color: #e8f4f8;
|
|
border-radius: 4px;
|
|
}
|
|
.highlight {
|
|
background-color: #fff3cd;
|
|
padding: 15px;
|
|
border-radius: 4px;
|
|
margin: 15px 0;
|
|
border-left: 4px solid #ffc107;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<div class="logo">{{APP_NAME}}</div>
|
|
</div>
|
|
<div class="content">
|
|
<h2>🚀 Verify Your Email to Create a Campaign</h2>
|
|
<p>Hi {{USER_NAME}},</p>
|
|
<p>You're one step away from turning your message into a powerful campaign!</p>
|
|
|
|
<div class="highlight">
|
|
<strong>What happens next?</strong>
|
|
<ul style="margin: 10px 0;">
|
|
<li>Click the verification button below</li>
|
|
<li>Create your account (if you don't have one)</li>
|
|
<li>Your email content will be pre-filled</li>
|
|
<li>Add campaign details and publish!</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<p style="text-align: center;">
|
|
<a href="{{VERIFICATION_URL}}" class="cta-button">Verify Email & Create Campaign</a>
|
|
</p>
|
|
|
|
<div class="info">
|
|
<strong>⏰ Important:</strong> This link expires in 24 hours.
|
|
</div>
|
|
|
|
<p style="margin-top: 20px; font-size: 14px; color: #666;">
|
|
If you didn't request this, you can safely ignore this email.
|
|
</p>
|
|
|
|
<p style="margin-top: 20px; font-size: 12px; color: #999;">
|
|
If the button doesn't work, copy and paste this link into your browser:<br>
|
|
<span style="word-break: break-all;">{{VERIFICATION_URL}}</span>
|
|
</p>
|
|
</div>
|
|
<div class="footer">
|
|
<p>{{APP_NAME}} - Empowering civic engagement</p>
|
|
<p style="margin-top: 10px;">{{TIMESTAMP}}</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|