Files
contact.allucanget.biz/templates/unsubscribe_confirmation.html
zwitschi c1e3ce185f
All checks were successful
CI / test (3.11) (pull_request) Successful in 1m59s
CI / build-image (pull_request) Successful in 2m43s
Remove unused templates for newsletter creation, settings, and submissions; update unsubscribe confirmation link; add tests for email templates API.
2025-11-06 11:10:10 +01:00

39 lines
1.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>Unsubscription Confirmed</title>
<link rel="stylesheet" href="/static/css/styles.css" />
<style>
.confirmation-container {
text-align: center;
}
.icon {
font-size: 48px;
color: #28a745;
margin-bottom: 20px;
}
.back-link {
margin-top: 30px;
}
</style>
</head>
<body>
<div class="confirmation-container">
<div class="icon"></div>
<h1>Unsubscription Confirmed</h1>
<p>
You have been successfully unsubscribed from our newsletter. We're sorry
to see you go, but you can always subscribe again if you change your
mind.
</p>
<p>
If you unsubscribed by mistake or have any questions, please feel free
to contact us.
</p>
<a href="/newsletter/manage" class="back-link">Return to Newsletter</a>
</div>
</body>
</html>