Skip to content

Commit b2130d5

Browse files
committed
Add account deletion page with support@commit451.com contact
1 parent 8a74438 commit b2130d5

1 file changed

Lines changed: 68 additions & 0 deletions

File tree

account-deletion/index.html

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Account Deletion — Commit 451</title>
7+
<meta name="description" content="How to request account deletion for Commit 451 apps and services.">
8+
<meta name="robots" content="index, follow">
9+
<meta name="theme-color" content="#60d4c5">
10+
<link rel="canonical" href="https://commit451.com/account-deletion">
11+
<link rel="icon" type="image/png" href="/favicon.png">
12+
<script src="https://cdn.tailwindcss.com"></script>
13+
<script>
14+
tailwind.config = {
15+
theme: {
16+
extend: {
17+
colors: {
18+
brand: { teal: '#60d4c5', red: '#e74c3c' },
19+
dark: { 950: '#030712', 900: '#111827', 800: '#1f2937', 700: '#374151' }
20+
}
21+
}
22+
}
23+
}
24+
</script>
25+
</head>
26+
<body class="bg-dark-950 text-gray-100 antialiased">
27+
<main class="mx-auto max-w-3xl px-6 py-16 sm:py-24">
28+
<a href="/" class="text-sm text-brand-teal hover:underline">← Back to home</a>
29+
<h1 class="mt-6 text-4xl font-bold tracking-tight text-white">Account Deletion</h1>
30+
<p class="mt-3 text-sm text-gray-400">Last updated: March 11, 2026</p>
31+
32+
<div class="mt-10 space-y-8 text-gray-300 leading-relaxed">
33+
<section>
34+
<h2 class="text-xl font-semibold text-white">How to Request Deletion</h2>
35+
<p class="mt-3">To request deletion of your account and associated personal data, email us at <a class="text-brand-teal hover:underline" href="mailto:support@commit451.com">support@commit451.com</a>.</p>
36+
</section>
37+
38+
<section>
39+
<h2 class="text-xl font-semibold text-white">What to Include</h2>
40+
<ul class="mt-3 list-disc space-y-2 pl-6">
41+
<li>The email address associated with your account</li>
42+
<li>The app or service name</li>
43+
<li>Any additional details that help us identify your account</li>
44+
</ul>
45+
</section>
46+
47+
<section>
48+
<h2 class="text-xl font-semibold text-white">What Happens Next</h2>
49+
<ul class="mt-3 list-disc space-y-2 pl-6">
50+
<li>We may ask you to verify account ownership before processing deletion.</li>
51+
<li>Once verified, we will delete or anonymize personal data associated with your account, subject to legal and operational requirements.</li>
52+
<li>Some records may be retained where required for security, fraud prevention, legal compliance, or backup recovery windows.</li>
53+
</ul>
54+
</section>
55+
56+
<section>
57+
<h2 class="text-xl font-semibold text-white">Processing Timeline</h2>
58+
<p class="mt-3">We aim to process verified deletion requests within 30 days.</p>
59+
</section>
60+
61+
<section>
62+
<h2 class="text-xl font-semibold text-white">Need Help?</h2>
63+
<p class="mt-3">If you have questions about deletion or data handling, contact us at <a class="text-brand-teal hover:underline" href="mailto:support@commit451.com">support@commit451.com</a>.</p>
64+
</section>
65+
</div>
66+
</main>
67+
</body>
68+
</html>

0 commit comments

Comments
 (0)