Files
scoutiq/resources/views/errors/404.php
2026-06-05 17:47:27 +03:00

22 lines
1.4 KiB
PHP

<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>الصفحة غير موجودة - ScoutIQ</title>
<link rel="stylesheet" href="/assets/css/app.css">
<link href="https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap" rel="stylesheet">
<style>
body { font-family: 'Tajawal', sans-serif; }
</style>
</head>
<body style="align-items: center; justify-content: center; display: flex; padding: 20px; min-height: 100vh;">
<div class="glass-panel" style="max-width: 500px; width: 100%; padding: 50px; text-align: center; display: flex; flex-direction: column; gap: 30px;">
<span style="font-size: 5rem; font-weight: 800; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Tajawal';">404</span>
<h1 style="font-size: 1.8rem; font-weight: 700;">الصفحة غير موجودة</h1>
<p style="color: var(--text-muted); font-size: 1rem; line-height: 1.6;">الرابط الذي تحاول الوصول إليه قد يكون قد تمت إزالته، أو تم تغيير اسمه، أو أنه غير متاح حالياً.</p>
<a href="/" class="btn btn-primary" style="align-self: center;">العودة للرئيسية</a>
</div>
</body>
</html>