80 lines
2.1 KiB
HTML
80 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Account Activated</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
background-color: #f4f4f4;
|
|
}
|
|
.container {
|
|
background-color: #ffffff;
|
|
padding: 30px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
padding-bottom: 20px;
|
|
border-bottom: 2px solid #4CAF50;
|
|
}
|
|
h1 {
|
|
color: #4CAF50;
|
|
margin: 0;
|
|
}
|
|
.content {
|
|
margin: 30px 0;
|
|
}
|
|
.footer {
|
|
margin-top: 30px;
|
|
padding-top: 20px;
|
|
border-top: 1px solid #ddd;
|
|
font-size: 12px;
|
|
color: #666;
|
|
text-align: center;
|
|
}
|
|
.success-icon {
|
|
text-align: center;
|
|
font-size: 48px;
|
|
margin: 20px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>Account Activated! ✅</h1>
|
|
</div>
|
|
|
|
<div class="success-icon">
|
|
🎉
|
|
</div>
|
|
|
|
<div class="content">
|
|
<p>Hi{% if user.first_name %} {{ user.first_name }}{% endif %},</p>
|
|
|
|
<p>Great news! Your account has been successfully activated.</p>
|
|
|
|
<p>You can now log in and start using all features of {{ site_name }}.</p>
|
|
|
|
<p>If you have any questions or need assistance, please don't hesitate to contact our support team.</p>
|
|
|
|
<p>Welcome aboard!</p>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>This is an automated message, please do not reply to this email.</p>
|
|
<p>© {{ site_name }} - All rights reserved</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|