Files
musadaq-saas/public/delete-account.php
2026-05-08 06:32:07 +03:00

83 lines
5.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>حذف الحساب والبيانات مُصادَق</title>
<meta name="description" content="طلب حذف حسابك وبياناتك من منصة مُصادَق.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--emerald: #10b981; --emerald-dark: #059669; --emerald-glow: rgba(16,185,129,0.15);
--bg: #060a12; --bg2: #0c1220; --border: rgba(255,255,255,0.08);
--text: #f0f6fc; --text2: #8b949e; --red: #ef4444;
}
body { font-family: 'IBM Plex Sans Arabic', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }
a { color: var(--emerald); text-decoration: none; }
a:hover { text-decoration: underline; }
/* === NAV === */
.nav { position: fixed; top: 0; width: 100%; z-index: 100; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; backdrop-filter: blur(20px); background: rgba(6,10,18,0.8); border-bottom: 1px solid var(--border); }
.nav-logo { font-size: 1.5rem; font-weight: 700; color: var(--emerald); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text2); font-size: 0.9rem; text-decoration: none; }
.nav-links a:hover { color: var(--emerald); text-decoration: none; }
/* === CONTENT === */
.container { max-width: 600px; margin: 8rem auto 4rem; padding: 2rem; background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; }
h1 { font-size: 2rem; margin-bottom: 1rem; color: var(--emerald); text-align: center; }
p { margin-bottom: 1rem; color: #cbd5e1; }
.alert { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); padding: 1rem; border-radius: 8px; margin-bottom: 2rem; color: #fca5a5; font-size: 0.9rem; }
.btn-primary { display: block; width: 100%; padding: 0.8rem; background: var(--red); color: white; border: none; border-radius: 6px; font-size: 1rem; font-weight: bold; text-align: center; cursor: pointer; text-decoration: none; transition: background 0.2s; }
.btn-primary:hover { background: #dc2626; text-decoration: none; }
/* === FOOTER === */
footer { padding: 3rem 2rem; border-top: 1px solid var(--border); text-align: center; color: var(--text2); font-size: 0.85rem; margin-top: 4rem; }
</style>
</head>
<body>
<nav class="nav">
<div class="nav-logo"><a href="/" style="color: inherit; text-decoration: none;">مُصادَق</a></div>
<div class="nav-links">
<a href="/">الرئيسية</a>
<a href="/privacy.php">سياسة الخصوصية</a>
</div>
</nav>
<div class="container">
<h1>طلب حذف الحساب</h1>
<p>نأسف لرحيلك. وفقاً لسياسة الخصوصية لدينا ولضمان تحكمك الكامل في بياناتك، يمكنك طلب حذف حسابك وكافة البيانات المرتبطة به من خوادم منصة "مُصادَق".</p>
<div class="alert">
<strong>⚠️ تحذير:</strong> حذف الحساب هو إجراء نهائي لا يمكن التراجع عنه. سيتم مسح جميع الفواتير، بيانات الشركات، والمعلومات المالية الخاصة بك نهائياً ولن تتمكن من استعادتها.
</div>
<h3 style="margin-top: 1.5rem; margin-bottom: 0.5rem; color: white;">كيفية طلب الحذف:</h3>
<ul style="color: var(--text2); padding-right: 1.5rem; margin-bottom: 2rem;">
<li style="margin-bottom: 0.5rem;">أرسل رسالة إلكترونية من <strong>نفس البريد الإلكتروني المسجل في حسابك</strong>.</li>
<li style="margin-bottom: 0.5rem;">اكتب في عنوان الرسالة: <strong>"طلب حذف حساب"</strong>.</li>
<li style="margin-bottom: 0.5rem;">سيقوم فريق الدعم بالتواصل معك لتأكيد هويتك، ثم سيتم مسح بياناتك كلياً خلال 7 أيام عمل.</li>
</ul>
<a href="mailto:support@musadaq.jo?subject=طلب%20حذف%20حساب" class="btn-primary">
إرسال طلب الحذف عبر البريد الإلكتروني
</a>
</div>
<footer>
<div class="container" style="background: transparent; border: none; margin-top: 0; padding: 0;">
<p style="margin-bottom: 0.5rem; font-size: 1.1rem; color: var(--emerald); font-weight: 600;">مُصادَق</p>
<p>منصة أتمتة الفواتير الإلكترونية صُنع في الأردن 🇯🇴</p>
<p style="margin-top: 1rem;">© 2026 مُصادَق. جميع الحقوق محفوظة.</p>
</div>
</footer>
</body>
</html>