-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount-deleted-confirmed.html
48 lines (48 loc) · 1.3 KB
/
account-deleted-confirmed.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="5;url=sign-up.html">
<title>Redirecting...</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
padding: 50px;
}
.container {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
max-width: 600px;
margin: 0 auto;
}
h1 {
color: #333333;
}
p {
color: #666666;
}
.redirect-msg {
font-size: 1.2em;
margin-top: 20px;
}
.redirect-link {
color: #1e90ff;
text-decoration: none;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>Redirecting...</h1>
<h3>Your Account Has Been Deleted</h3>
<p>We're sorry to see you go!</p>
<p>You will be redirected to sign up page in 5 seconds.</p>
<p>If you are not redirected, please click <a href="sign-up.html" class="redirect-link">here</a>.</p>
</div>
</body>
</html>