mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 05:14:23 +00:00
34 lines
896 B
HTML
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>
|