38808-vm/includes/footer.php
2026-02-27 18:38:01 +00:00

48 lines
1.8 KiB
PHP

</main>
</div>
</div>
<footer class="footer mt-auto py-3 bg-white border-top">
<div class="container-fluid px-md-4">
<div class="row align-items-center">
<div class="col-md-6 text-center text-md-start mb-2 mb-md-0">
<span class="text-muted small">
&copy; <?= date('Y') ?> <?= htmlspecialchars($charity_name) ?>. جميع الحقوق محفوظة.
</span>
</div>
<div class="col-md-6 text-center text-md-end">
<ul class="list-inline mb-0">
<li class="list-inline-item">
<a href="index.php" class="text-muted text-decoration-none small hover-primary">
<i class="fas fa-home me-1"></i> لوحة التحكم
</a>
</li>
<li class="list-inline-item ms-3">
<a href="profile.php" class="text-muted text-decoration-none small hover-primary">
<i class="fas fa-user-circle me-1"></i> الملف الشخصي
</a>
</li>
<?php if (isAdmin()): ?>
<li class="list-inline-item ms-3">
<a href="charity-settings.php" class="text-muted text-decoration-none small hover-primary">
<i class="fas fa-cog me-1"></i> الإعدادات
</a>
</li>
<?php endif; ?>
</ul>
</div>
</div>
</div>
</footer>
<style>
.hover-primary:hover {
color: #0d6efd !important;
}
</style>
<script>
// Global JS functions if needed
</script>
</body>
</html>