-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (115 loc) · 6.98 KB
/
index.html
File metadata and controls
130 lines (115 loc) · 6.98 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Account Management - X0U8</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="min-h-screen bg-gradient-to-br from-slate-50 to-blue-50">
<header class="bg-white shadow-sm border-b">
<div class="max-w-4xl mx-auto px-4 py-6">
<div class="flex items-center space-x-3">
<div class="w-10 h-10 bg-blue-600 rounded-lg flex items-center justify-center">
<span class="text-white font-bold text-lg">X0U8</span>
</div>
<div>
<h1 class="text-2xl font-bold text-gray-900">Account Management</h1>
<p class="text-gray-600">Remove or Update Your Account Details</p>
</div>
</div>
</div>
</header>
<main class="max-w-4xl mx-auto px-4 py-12">
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="bg-blue-600 text-white px-8 py-6">
<h2 class="text-xl font-semibold mb-4">Account Data Management Request</h2>
<p class="text-blue-100 leading-relaxed">
To remove or update your account details from our X0U8 Play Store application,
please send an email with your information to our support team.
</p>
</div>
<div class="p-8">
<div class="space-y-6">
<div class="bg-gray-50 border border-gray-200 rounded-lg p-6 text-center">
<h3 class="text-lg font-semibold text-gray-900 mb-2">Send Your Request To:</h3>
<div class="bg-white border-2 border-blue-200 rounded-lg p-4 inline-block">
<a
href="mailto:x0u8.001@gmail.com"
class="text-xl font-mono text-blue-600 hover:text-blue-800 transition-colors"
>
x0u8.001@gmail.com
</a>
</div>
</div>
<div class="bg-amber-50 border border-amber-200 rounded-lg p-6">
<h3 class="font-semibold text-amber-900 mb-3">Required Information to Include:</h3>
<div class="space-y-2 text-amber-800">
<div class="flex items-start space-x-2">
<span class="font-semibold min-w-0">•</span>
<span><strong>First Name:</strong> Your first name</span>
</div>
<div class="flex items-start space-x-2">
<span class="font-semibold min-w-0">•</span>
<span><strong>Email Address:</strong> The email associated with your account</span>
</div>
<div class="flex items-start space-x-2">
<span class="font-semibold min-w-0">•</span>
<span><strong>User ID:</strong> Your user ID (if known)</span>
</div>
<div class="flex items-start space-x-2">
<span class="font-semibold min-w-0">•</span>
<span><strong>Request Type:</strong> Specify if you want to remove or update your account</span>
</div>
</div>
</div>
<div class="bg-blue-50 border border-blue-200 rounded-lg p-6">
<h3 class="font-semibold text-blue-900 mb-3">What Happens Next:</h3>
<div class="space-y-3 text-blue-800">
<div class="flex items-start space-x-3">
<div class="w-6 h-6 bg-blue-600 text-white rounded-full flex items-center justify-center text-sm font-semibold flex-shrink-0 mt-0.5">1</div>
<span>You send an email with your account details to our support team</span>
</div>
<div class="flex items-start space-x-3">
<div class="w-6 h-6 bg-blue-600 text-white rounded-full flex items-center justify-center text-sm font-semibold flex-shrink-0 mt-0.5">2</div>
<span>We will send you a confirmation email within 24-48 hours</span>
</div>
<div class="flex items-start space-x-3">
<div class="w-6 h-6 bg-blue-600 text-white rounded-full flex items-center justify-center text-sm font-semibold flex-shrink-0 mt-0.5">3</div>
<span>Your account management request will be processed</span>
</div>
</div>
</div>
<div class="bg-red-50 border border-red-200 rounded-lg p-4">
<p class="text-sm text-red-800">
<strong>Important:</strong> Please provide at least your first name and either your email address or user ID
so we can identify and process your account correctly.
</p>
</div>
</div>
</div>
</div>
<div class="mt-8 bg-white rounded-lg shadow-sm p-6">
<h3 class="font-semibold text-gray-900 mb-3">Support Contact</h3>
<div class="text-gray-600 space-y-1">
<div>
<span class="text-sm">Email Support: </span>
<a href="mailto:x0u8.001@gmail.com" class="text-blue-600 hover:text-blue-800 font-medium">
x0u8.001@gmail.com
</a>
</div>
<div class="text-xs text-gray-500">
Developer: X0U8 | Available on Google Play Store
</div>
</div>
</div>
</main>
<footer class="bg-gray-50 border-t mt-16">
<div class="max-w-4xl mx-auto px-4 py-6 text-center text-sm text-gray-500">
<p>© 2024 X0U8. All rights reserved. | Privacy-focused account management</p>
</div>
</footer>
</div>
</body>
</html>