-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete-request.html
66 lines (54 loc) · 1.16 KB
/
delete-request.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Account Removal Request</title>
<style>
html, body {
height: 100%;
display: flex;
flex-direction:column;
justify-content: center;
align-items: center;
}
body {
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
font-size: 24px;
}
.countdown {
font-size: 48px;
margin: 20px 0;
}
.message {
font-size: 16px;
margin-bottom: 20px;
}
.email-link {
font-size: 20px;
color: #0000FF;
text-decoration: none;
}
@media (max-width: 480px) {
.countdown {
font-size: 36px;
}
}
</style>
</head>
<body>
<h1>Account Removal Request</h1>
<div class="message">
Please send an email to <a class="email-link" href="mailto:[email protected]">[email protected]</a> to request removal of your account / data.
</div>
<script>
function countdown() {
window.location.href = '/delete-data-request';
}
countdown();
</script>
</body>
</html>