mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 21:34:24 +00:00
prepare newsletter plugin
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user