128 lines
5.8 KiB
PHP
128 lines
5.8 KiB
PHP
<!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="#" class="nav-link px-2 link-secondary">خانه</a></li>
|
|
</ul>
|
|
|
|
<div class="text-end">
|
|
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#loginModal">
|
|
ورود
|
|
</button>
|
|
</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>
|
|
|
|
<!-- Login Modal -->
|
|
<div class="modal fade" id="loginModal" tabindex="-1" aria-labelledby="loginModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog modal-dialog-centered">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="loginModalLabel">ورود به سیستم</h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<form>
|
|
<div class="mb-3">
|
|
<label for="username" class="form-label">نام کاربری</label>
|
|
<input type="text" class="form-control" id="username">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="password" class="form-label">رمز عبور</label>
|
|
<input type="password" class="form-control" id="password">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary w-100">ورود</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 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> |