36352-vm/index.php
Flatlogic Bot a2059511fc t4
2025-11-27 10:08:20 +00:00

111 lines
5.0 KiB
PHP

<?php session_start(); ?>
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>سیستم مدیریت مدرسه</title>
<meta name="description" content="<?php echo htmlspecialchars($_SERVER['PROJECT_DESCRIPTION'] ?? 'سیستم جامع مدیریت مدرسه'); ?>">
<!-- Bootstrap RTL CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.rtl.min.css" rel="stylesheet">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700&display=swap" rel="stylesheet">
<!-- Feather Icons -->
<script src="https://unpkg.com/feather-icons"></script>
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
<meta property="og:title" content="School Management System">
<meta property="og:description" content="<?php echo htmlspecialchars($_SERVER['PROJECT_DESCRIPTION'] ?? 'A comprehensive school management system.'); ?>">
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
<meta name="twitter:card" content="summary_large_image">
</head>
<body>
<header class="p-3 mb-3 border-bottom sticky-top bg-light">
<div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<a href="/" class="d-flex align-items-center mb-2 mb-lg-0 text-dark text-decoration-none">
<span class="fs-4">مدیریت مدرسه</span>
</a>
<ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
<li><a href="index.php" class="nav-link px-2 link-secondary">خانه</a></li>
<li><a href="roles.php" class="nav-link px-2 link-dark">مدیریت نقش‌ها</a></li>
<li><a href="users.php" class="nav-link px-2 link-dark">مدیریت کاربران</a></li>
<a href="activities.php">Activities</a>
<a href="exams.php">Exams</a>
<a href="attendance.php">Attendance</a>
</ul>
<div class="text-end">
<?php if (isset($_SESSION['user_id'])): ?>
<a href="logout.php" class="btn btn-outline-primary">خروج</a>
<?php else: ?>
<a href="login.php" class="btn btn-primary">ورود</a>
<?php endif; ?>
</div>
</div>
</div>
</header>
<main>
<section class="hero">
<div class="container">
<h1>سیستم مدیریت یکپارچه مدرسه</h1>
<p>راه حلی مدرن برای مدیریت تمام امور مدرسه شما</p>
<a href="#features" class="btn btn-light btn-lg">بیشتر بدانید</a>
</div>
</section>
<section id="features" class="py-5">
<div class="container">
<h2 class="text-center mb-5">امکانات سیستم</h2>
<div class="row text-center">
<div class="col-md-4">
<div class="feature-card">
<i data-feather="users"></i>
<h3>مدیریت دانش‌آموزان</h3>
<p>ثبت‌نام، اطلاعات تحصیلی و حضور و غیاب.</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-card">
<i data-feather="briefcase"></i>
<h3>مدیریت معلمان</h3>
<p>اطلاعات پرسنلی، برنامه‌ریزی درسی و ارتباط با والدین.</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-card">
<i data-feather="book-open"></i>
<h3>مدیریت دوره‌ها</h3>
<p>ایجاد و مدیریت کلاس‌ها و واحدهای درسی.</p>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="footer mt-auto py-3 bg-light">
<div class="container">
<span class="text-muted">© 2025 سیستم مدیریت مدرسه</span>
</div>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom JS -->
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
<script>
feather.replace()
</script>
</body>
</html>