113 lines
3.3 KiB
HTML
113 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>New Response Submitted — {{ORGANIZATION_NAME}}</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;
|
|
border-bottom: 2px solid #d97706;
|
|
padding-bottom: 20px;
|
|
}
|
|
.logo {
|
|
color: #d97706;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
}
|
|
.content {
|
|
background-color: white;
|
|
padding: 25px;
|
|
border-radius: 6px;
|
|
margin-bottom: 20px;
|
|
border-left: 4px solid #d97706;
|
|
}
|
|
.info-section {
|
|
background-color: #fffbeb;
|
|
padding: 15px;
|
|
border-radius: 4px;
|
|
margin: 16px 0;
|
|
border: 1px solid #fde68a;
|
|
}
|
|
.info-item {
|
|
margin: 6px 0;
|
|
}
|
|
.info-label {
|
|
font-weight: bold;
|
|
color: #92400e;
|
|
}
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 14px 32px;
|
|
border-radius: 6px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
background: linear-gradient(135deg, #d97706, #b45309);
|
|
color: white;
|
|
}
|
|
.btn-container {
|
|
text-align: center;
|
|
margin: 24px 0;
|
|
}
|
|
.footer {
|
|
text-align: center;
|
|
font-size: 12px;
|
|
color: #6c757d;
|
|
margin-top: 30px;
|
|
padding-top: 20px;
|
|
border-top: 1px solid #e9ecef;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<div class="logo">{{ORGANIZATION_NAME}}</div>
|
|
<p style="margin: 10px 0 0 0; color: #6c757d;">New Response Submitted</p>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<p>A new response has been submitted to the response wall and is awaiting moderation:</p>
|
|
|
|
<div class="info-section">
|
|
<div class="info-item">
|
|
<span class="info-label">Campaign:</span> {{CAMPAIGN_TITLE}}
|
|
</div>
|
|
<div class="info-item">
|
|
<span class="info-label">Representative:</span> {{REPRESENTATIVE_NAME}}
|
|
</div>
|
|
<div class="info-item">
|
|
<span class="info-label">Response Type:</span> {{RESPONSE_TYPE}}
|
|
</div>
|
|
<div class="info-item">
|
|
<span class="info-label">Submitted By:</span> {{SUBMITTER_NAME}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="btn-container">
|
|
<a href="{{ADMIN_URL}}" class="btn">Review Responses</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>This is an admin notification from <strong>{{ORGANIZATION_NAME}}</strong></p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|