| Server IP : 104.21.80.248 / Your IP : 172.71.28.155 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/www/education/template/ |
Upload File : |
<!DOCTYPE html>
<html lang="th">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo isset($page_title) ? $page_title : 'ระบบจัดการข้อมูลการเรียนต่อ สพม.ราชบุรี'; ?></title>
<!-- Bootstrap 5.3 CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Kanit', sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.navbar {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.main-content {
padding-top: 100px;
padding-bottom: 50px;
}
.card {
border: none;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
}
.card-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 20px 20px 0 0 !important;
padding: 1.5rem;
}
.btn-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: none;
border-radius: 10px;
padding: 10px 25px;
font-weight: 500;
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}
.btn-success {
background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
border: none;
border-radius: 10px;
padding: 10px 25px;
font-weight: 500;
}
.btn-warning {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
border: none;
border-radius: 10px;
padding: 10px 25px;
font-weight: 500;
}
.form-control, .form-select {
border-radius: 10px;
border: 2px solid #e3f2fd;
padding: 12px 15px;
transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
border-color: #667eea;
box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
.table {
border-radius: 15px;
overflow: hidden;
}
.table thead th {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
padding: 15px;
}
.table tbody td {
padding: 15px;
vertical-align: middle;
border-color: #f8f9fa;
}
.stats-card {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 20px;
padding: 2rem;
margin-bottom: 1.5rem;
}
.stats-card .stats-number {
font-size: 3rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.fade-in {
animation: fadeIn 0.6s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.sidebar {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
min-height: calc(100vh - 76px);
border-radius: 0 20px 20px 0;
box-shadow: 4px 0 30px rgba(0, 0, 0, 0.1);
}
.sidebar .nav-link {
color: #495057;
padding: 15px 20px;
margin: 5px 15px;
border-radius: 10px;
transition: all 0.3s ease;
}
.sidebar .nav-link:hover, .sidebar .nav-link.active {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
transform: translateX(5px);
}
</style>
</head>
<body>
<?php if(isset($_SESSION['user_id'])): ?>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container-fluid">
<a class="navbar-brand fw-bold text-primary" href="dashboard.php">
<i class="bi bi-mortarboard-fill me-2"></i>
ระบบจัดการข้อมูลการเรียนต่อ สพม.ราชบุรี
</a>
<div class="navbar-nav ms-auto">
<div class="nav-item dropdown">
<a class="nav-link dropdown-toggle fw-semibold" href="#" role="button" data-bs-toggle="dropdown">
<i class="bi bi-person-circle me-1"></i>
<?php echo $_SESSION['user_name']; ?>
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="logout.php">
<i class="bi bi-box-arrow-right me-2"></i>ออกจากระบบ
</a></li>
</ul>
</div>
</div>
</div>
</nav>
<?php endif; ?>