Files
libreevent/src/server/backend/plugins/others/newsletter/html/unsubscribeComplete.html
2023-09-16 11:49:35 +02:00

34 lines
896 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Unsubscribed from Newsletter</title>
<link rel="stylesheet" href="/css/errorstyle.css">
<style>
.input {
width: 40%;
padding: 0.5%;
font-size: 120%;
border-radius: 15px;
margin: 2%;
margin-bottom: 4%;
}
</style>
</head>
<body>
<div class="content">
<h1>Unsubscribed from newsletter</h1>
<p>You have successfully unsubscribed from the newsletter.</p>
</div>
<script>
setTimeout( redirect, 7000 );
function redirect () {
location.href = '/';
}
</script>
</body>
</html>