130 lines
2.8 KiB
HTML
130 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Thank You for Your Mosquito Report</title>
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Arial, sans-serif;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
color: #333333;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
.view-browser {
|
|
text-align: center;
|
|
font-size: 12px;
|
|
color: #777777;
|
|
padding-bottom: 15px;
|
|
}
|
|
.view-browser a {
|
|
color: #555555;
|
|
text-decoration: underline;
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
padding: 20px 0;
|
|
}
|
|
.logo {
|
|
max-width: 150px;
|
|
height: auto;
|
|
}
|
|
.content {
|
|
background-color: #f9f9f9;
|
|
padding: 30px;
|
|
border-radius: 5px;
|
|
}
|
|
.button {
|
|
display: inline-block;
|
|
background-color: #0066cc;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
padding: 12px 25px;
|
|
border-radius: 4px;
|
|
margin: 20px 0;
|
|
font-weight: bold;
|
|
}
|
|
.footer {
|
|
text-align: center;
|
|
font-size: 14px;
|
|
color: #777777;
|
|
padding: 20px 0;
|
|
}
|
|
.footer a {
|
|
color: #777777;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
{{ if not .IsBrowser }}
|
|
<div class="view-browser">
|
|
Email not displaying correctly?
|
|
<a href="{{ .C.URLViewInBrowser }}">View it in your browser</a>
|
|
</div>
|
|
{{ end }}
|
|
|
|
|
|
<div class="header">
|
|
<!-- Logo Placeholder -->
|
|
<img
|
|
src="{{ .C.URLLogo }}"
|
|
alt="Report Mosquitoes Online Logo"
|
|
class="logo"
|
|
/>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<h1>Thank You for Your Report</h1>
|
|
|
|
<p>
|
|
We've received your mosquito report {{ .C.ReportIDStr }}. Thanks! We
|
|
appreciate you taking the time to submit it.
|
|
</p>
|
|
|
|
<p>
|
|
You can check the current status of your report at any time by
|
|
clicking the button below:
|
|
</p>
|
|
|
|
<div style="text-align: center;">
|
|
<a href="{{ .C.URLReportStatus }}" class="button"
|
|
>View Report Status</a
|
|
>
|
|
</div>
|
|
|
|
<p>
|
|
We'll send you additional updates as work is scheduled and completed.
|
|
</p>
|
|
|
|
<p>
|
|
If you have any questions or need further assistance, please don't
|
|
hesitate to contact us by replying to this email.
|
|
</p>
|
|
<p>
|
|
You can unsubscribe from notifications about this report by clicking
|
|
<a hrep="{{ .C.URLReportUnsubscribe }}">here</a>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>
|
|
This email was sent to you because you requested updates on your
|
|
mosquito nuisance report.
|
|
</p>
|
|
<p>
|
|
If you no longer wish to receive these updates,
|
|
<a href="{{ .C.URLReportUnsubscribe }}">click here to unsubscribe</a>.
|
|
</p>
|
|
<p>© 2026 Gleipnir LLC. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|