Files
igny8/backend/igny8_core/templates/emails/base.html
2026-01-07 00:57:26 +00:00

113 lines
3.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}IGNY8{% endblock %}</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: #333333;
margin: 0;
padding: 0;
background-color: #f5f5f5;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.header {
text-align: center;
padding: 30px 0;
background-color: #ffffff;
border-bottom: 3px solid #6366f1;
}
.logo {
font-size: 28px;
font-weight: bold;
color: #6366f1;
text-decoration: none;
}
.content {
background-color: #ffffff;
padding: 40px 30px;
}
.footer {
text-align: center;
padding: 20px;
color: #888888;
font-size: 12px;
}
.button {
display: inline-block;
padding: 12px 30px;
background-color: #6366f1;
color: #ffffff !important;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
margin: 20px 0;
}
.button:hover {
background-color: #4f46e5;
}
.info-box {
background-color: #f8fafc;
border-left: 4px solid #6366f1;
padding: 15px 20px;
margin: 20px 0;
}
.warning-box {
background-color: #fef3c7;
border-left: 4px solid #f59e0b;
padding: 15px 20px;
margin: 20px 0;
}
.success-box {
background-color: #d1fae5;
border-left: 4px solid #10b981;
padding: 15px 20px;
margin: 20px 0;
}
h1, h2, h3 {
color: #1f2937;
}
a {
color: #6366f1;
}
.details-table {
width: 100%;
border-collapse: collapse;
margin: 15px 0;
}
.details-table td {
padding: 8px 0;
border-bottom: 1px solid #e5e7eb;
}
.details-table td:first-child {
color: #6b7280;
width: 40%;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<a href="{{ frontend_url }}" class="logo">IGNY8</a>
</div>
<div class="content">
{% block content %}{% endblock %}
</div>
<div class="footer">
<p>&copy; {{ current_year|default:"2026" }} IGNY8. All rights reserved.</p>
<p>
<a href="{{ frontend_url }}/privacy">Privacy Policy</a> |
<a href="{{ frontend_url }}/terms">Terms of Service</a>
</p>
</div>
</div>
</body>
</html>