368 lines
13 KiB
PHP
368 lines
13 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>@yield('title', 'Admin Portal - Automobile Academic')</title>
|
|
|
|
<!-- Font Awesome Icons & Bootstrap 5 -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<style>
|
|
:root {
|
|
--theme-navy: #2D355B;
|
|
--theme-footer-navy: #1F2541;
|
|
--theme-red: #822424;
|
|
--theme-red-hover: #df2c3e;
|
|
--theme-yellow: #FFEA85;
|
|
--theme-bg: #F6F6F6;
|
|
--sidebar-width: 260px;
|
|
--text-dark: #333333;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Segoe UI', sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--theme-bg);
|
|
color: var(--text-dark);
|
|
display: flex;
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.sidebar {
|
|
width: var(--sidebar-width);
|
|
height: 100vh;
|
|
background: var(--theme-navy);
|
|
color: #fff;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
padding: 24px 0;
|
|
transition: all 0.3s ease;
|
|
z-index: 1030;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-shadow: 2px 0 10px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.sidebar .brand {
|
|
padding: 0 24px 20px;
|
|
font-weight: 700;
|
|
font-size: 1.25rem;
|
|
color: #ffffff;
|
|
border-bottom: 1px solid rgba(255,255,255,.15);
|
|
margin-bottom: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.sidebar .admin-badge {
|
|
background-color: var(--theme-red);
|
|
font-size: 0.7rem;
|
|
padding: 2px 8px;
|
|
border-radius: 4px;
|
|
margin-left: 8px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.sidebar .nav {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.sidebar .nav-link {
|
|
color: rgba(255, 255, 255, 0.85);
|
|
padding: 14px 24px;
|
|
font-size: 0.95rem;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
transition: all 0.2s ease;
|
|
border-left: 4px solid transparent;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.sidebar .nav-link i {
|
|
width: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.sidebar .nav-link:hover {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: var(--theme-yellow) !important;
|
|
padding-left: 28px;
|
|
}
|
|
|
|
.sidebar .nav-link.active {
|
|
background: var(--theme-footer-navy);
|
|
color: var(--theme-yellow) !important;
|
|
border-left: 4px solid #F73F52;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.sidebar-user-profile {
|
|
padding: 15px 24px;
|
|
border-top: 1px solid rgba(255,255,255,.15);
|
|
margin-top: auto;
|
|
background: var(--theme-footer-navy);
|
|
}
|
|
|
|
.sidebar-user-profile .user-dropdown-toggle {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-size: 0.95rem;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
.sidebar-user-profile .user-dropdown-toggle:hover {
|
|
color: var(--theme-yellow);
|
|
}
|
|
|
|
.main {
|
|
margin-left: var(--sidebar-width);
|
|
width: calc(100% - var(--sidebar-width));
|
|
min-height: 100vh;
|
|
padding: 40px;
|
|
background: var(--theme-bg);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.mobile-header {
|
|
display: none;
|
|
background: var(--theme-navy);
|
|
color: #ffffff;
|
|
padding: 12px 20px;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1020;
|
|
}
|
|
|
|
.sidebar-toggle {
|
|
background: none;
|
|
border: none;
|
|
font-size: 1.4rem;
|
|
cursor: pointer;
|
|
color: #ffffff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.sidebar-toggle:hover {
|
|
color: var(--theme-yellow);
|
|
}
|
|
|
|
.mobile-brand {
|
|
font-weight: 700;
|
|
font-size: 1.1rem;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.sidebar-overlay {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0,0,0,0.5);
|
|
z-index: 1025;
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.sidebar-overlay.show {
|
|
display: block;
|
|
opacity: 1;
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.sidebar {
|
|
left: calc(-1 * var(--sidebar-width));
|
|
}
|
|
|
|
.sidebar.show {
|
|
left: 0;
|
|
}
|
|
|
|
.main {
|
|
margin-left: 0;
|
|
padding: 85px 20px 20px 20px;
|
|
width: 100%;
|
|
}
|
|
|
|
.mobile-header {
|
|
display: flex;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Mobile Top Navigation Bar -->
|
|
<header class="mobile-header">
|
|
<button class="sidebar-toggle" id="toggleBtn" aria-label="Toggle Sidebar">
|
|
<i class="fa-solid fa-bars"></i>
|
|
</button>
|
|
<div class="mobile-brand">
|
|
<i class="fa-solid fa-user-shield me-1"></i> Admin Panel
|
|
</div>
|
|
|
|
<div class="mobile-user-profile">
|
|
@if(session()->has('admin_id'))
|
|
<div class="dropdown">
|
|
<a class="text-white text-decoration-none dropdown-toggle d-flex flex-column align-items-center justify-content-center gap-0" href="#" role="button" id="userMenuMobile" data-bs-toggle="dropdown" aria-expanded="false" style="line-height: 1.1;">
|
|
<i class="fa-solid fa-circle-user" style="font-size: 24px; color: var(--theme-yellow);"></i>
|
|
<span class="fst-italic" style="font-size: 11px;">{{ session('admin_name', 'Admin') }}</span>
|
|
</a>
|
|
<ul class="dropdown-menu dropdown-menu-end shadow" aria-labelledby="userMenuMobile">
|
|
<li>
|
|
<a class="dropdown-item" href="{{ route('admin.profile') }}">
|
|
<i class="fa-solid fa-user-gear me-2"></i> Admin Profile
|
|
</a>
|
|
</li>
|
|
<li><hr class="dropdown-divider"></li>
|
|
<li>
|
|
<button type="button" onclick="submitAdminLogout()" class="dropdown-item text-danger w-100 text-start border-0 bg-transparent">
|
|
<i class="fa-solid fa-right-from-bracket me-2"></i> Logout
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
@else
|
|
<a href="{{ route('admin.login') }}" class="btn btn-sm btn-outline-light"><i class="fa-solid fa-right-to-bracket me-1"></i> Sign In</a>
|
|
@endif
|
|
</div>
|
|
</header>
|
|
|
|
<div class="sidebar-overlay" id="sidebarOverlay"></div>
|
|
|
|
<!-- Sidebar Navigation -->
|
|
<aside class="sidebar" id="sidebar">
|
|
<div class="brand">
|
|
<i class="fa-solid fa-car-side me-2"></i> AutoEdu
|
|
<span class="admin-badge">Admin</span>
|
|
</div>
|
|
|
|
<nav class="nav">
|
|
<a href="/admin/dashboard" class="nav-link {{ request()->is('admin/dashboard*') ? 'active' : '' }}">
|
|
<i class="fa-solid fa-chart-line"></i> Admin Dashboard
|
|
</a>
|
|
<a href="{{ route('admin.mycourses') }}" class="nav-link {{ request()->is('admin/adminmycourses*') ? 'active' : '' }}">
|
|
<i class="fa-solid fa-book-bookmark"></i> Course Management
|
|
</a>
|
|
<a href="{{ route('admin.timetable') }}" class="nav-link {{ request()->is('admin/timetable*') ? 'active' : '' }}">
|
|
<i class="fa-solid fa-calendar-check"></i> Class Timetable
|
|
</a>
|
|
<a href="{{ route('admin.results') }}" class="nav-link {{ request()->is('admin/results*') ? 'active' : '' }}">
|
|
<i class="fa-solid fa-file-invoice-dollar"></i> Exam Results
|
|
</a>
|
|
<a href="{{ route('admin.profile') }}" class="nav-link {{ request()->is('admin/profile*') ? 'active' : '' }}">
|
|
<i class="fa-solid fa-user-gear"></i> Admin Profile
|
|
</a>
|
|
</nav>
|
|
|
|
<div class="sidebar-user-profile">
|
|
@if(session()->has('admin_id'))
|
|
<div class="dropdown dropup">
|
|
<a class="user-dropdown-toggle dropdown-toggle" href="#" role="button" id="userMenuDesktop" data-bs-toggle="dropdown" aria-expanded="false">
|
|
<i class="fa-solid fa-circle-user" style="font-size: 24px; color: var(--theme-yellow);"></i>
|
|
<span class="text-truncate" style="max-width: 150px;">{{ session('admin_name', 'Admin') }}</span>
|
|
</a>
|
|
|
|
<ul class="dropdown-menu dropdown-menu-start shadow w-100" aria-labelledby="userMenuDesktop">
|
|
<li>
|
|
<a class="dropdown-item" href="{{ route('admin.profile') }}">
|
|
<i class="fa-solid fa-user-gear me-2"></i> Admin Profile
|
|
</a>
|
|
</li>
|
|
<li><hr class="dropdown-divider"></li>
|
|
<li>
|
|
<button type="button" onclick="submitAdminLogout()" class="dropdown-item text-danger border-0 bg-transparent w-100 text-start">
|
|
<i class="fa-solid fa-right-from-bracket me-2"></i> Logout
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
@else
|
|
<div class="d-flex gap-2">
|
|
<a href="{{ route('admin.login') }}" class="btn btn-outline-light btn-sm w-100">Sign In</a>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</aside>
|
|
|
|
<main class="main">
|
|
@yield('content')
|
|
</main>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<script>
|
|
// Sidebar Toggle Logic
|
|
const toggleBtn = document.getElementById('toggleBtn');
|
|
const sidebar = document.getElementById('sidebar');
|
|
const overlay = document.getElementById('sidebarOverlay');
|
|
|
|
if(toggleBtn) {
|
|
toggleBtn.addEventListener('click', () => {
|
|
sidebar.classList.toggle('show');
|
|
overlay.classList.toggle('show');
|
|
});
|
|
}
|
|
|
|
if(overlay) {
|
|
overlay.addEventListener('click', () => {
|
|
sidebar.classList.remove('show');
|
|
overlay.classList.remove('show');
|
|
});
|
|
}
|
|
|
|
// Admin Logout Logic
|
|
function submitAdminLogout() {
|
|
const tokenEl = document.querySelector('meta[name="csrf-token"]');
|
|
|
|
fetch('/admin/logout', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'Accept': 'application/json',
|
|
'X-CSRF-TOKEN': tokenEl ? tokenEl.getAttribute('content') : ''
|
|
}
|
|
})
|
|
.then(res => res.json())
|
|
.then(data => {
|
|
if (data.success) {
|
|
window.location.href = '/adminlogin';
|
|
} else {
|
|
alert('Logout failed. Please try again.');
|
|
}
|
|
})
|
|
.catch(err => {
|
|
console.error('Error:', err);
|
|
alert('Server side error occurred during logout.');
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |