41 lines
1.5 KiB
PHP
41 lines
1.5 KiB
PHP
<?php
|
|
// includes/header.php
|
|
session_start();
|
|
require_once 'config/db.php';
|
|
require_once 'includes/functions.php';
|
|
|
|
check_login();
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="th" data-theme="light">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ระบบบริหารจัดการองค์กร | Enterprise Dashboard</title>
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/png" href="assets/logo.png">
|
|
|
|
<!-- 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=Sarabun:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
|
|
<!-- Bootstrap 5.3 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Bootstrap Icons -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
|
|
<!-- FontAwesome 5 -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
|
|
<!-- DataTables CSS -->
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/1.13.6/css/dataTables.bootstrap5.min.css">
|
|
|
|
<!-- Custom Theme & App CSS -->
|
|
<link rel="stylesheet" href="assets/css/theme.css">
|
|
<link rel="stylesheet" href="assets/css/app.css">
|
|
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
<?php require_once 'includes/sidebar.php'; ?>
|