-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete_account.html
103 lines (89 loc) · 2.61 KB
/
delete_account.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Account Deletion Steps</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 30px;
border: 2px solid #0077E5;
background-color: #fff;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
border-radius: 10px;
box-sizing: border-box;
transition: all 0.3s ease;
}
.container:hover {
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
h1 {
font-weight: 700;
color: #0077E5;
border-bottom: 3px solid #0077E5;
padding-bottom: 10px;
margin-bottom: 20px;
font-size: 26px;
text-align: center;
}
h4 {
font-weight: 500;
margin-bottom: 25px;
font-size: 18px;
color: #555;
text-align: center;
}
ol {
font-size: 16px;
line-height: 1.7;
padding-left: 20px;
color: #333;
}
ol li {
margin-bottom: 15px;
}
ol li::marker {
color: #0077E5;
font-weight: bold;
}
@media (max-width: 600px) {
.container {
margin: 20px;
padding: 20px;
}
h1 {
font-size: 22px;
}
h4 {
font-size: 16px;
}
ol {
font-size: 14px;
}
}
</style>
</head>
<body>
<div class="container" role="main">
<h1>How to Delete Your Account</h1>
<h4>Permanently remove your account, including all associated data and settings. Follow the steps below:</h4>
<ol>
<li>Open the app on your device.</li>
<li>Log in to your account if you haven't already.</li>
<li>Navigate to the "Account" tab in the app's menu.</li>
<li>Select the "Delete Account" option.</li>
<li>Read and confirm the warning about permanent data deletion.</li>
<li>Tap "Delete Account" to proceed.</li>
<li>You will receive a confirmation that your account has been successfully deleted.</li>
</ol>
</div>
</body>
</html>