63 lines
2.4 KiB
PHP
63 lines
2.4 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="th">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ระบบแจ้งเตือนส่งงาน</title>
|
|
<link rel="icon" type="image/png" href="assets/img/logo.png">
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
|
|
<!-- DataTables CSS -->
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css">
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/responsive/2.5.0/css/responsive.dataTables.min.css">
|
|
|
|
<!-- Custom CSS to make DataTables look good with Tailwind -->
|
|
<style>
|
|
.dataTables_wrapper .dataTables_paginate .paginate_button {
|
|
padding: 0.25em 0.75em;
|
|
margin-left: 2px;
|
|
border-radius: 0.25rem;
|
|
}
|
|
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
|
|
th, .dataTable th, table.dataTable thead th, table.dataTable thead td { text-align: center !important; }
|
|
background: #2563eb !important;
|
|
color: white !important;
|
|
border: 1px solid #2563eb !important;
|
|
}
|
|
body { font-family: 'Sarabun', sans-serif; background-color: #f3f4f6; }
|
|
|
|
.shiny-logo {
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: inline-block;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.shiny-logo::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: -150%;
|
|
width: 50%;
|
|
height: 100%;
|
|
background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
|
|
transform: skewX(-25deg);
|
|
animation: shine 6s infinite ease-in-out;
|
|
}
|
|
|
|
@keyframes shine {
|
|
0% { left: -150%; }
|
|
15% { left: 200%; }
|
|
100% { left: 200%; }
|
|
}
|
|
</style>
|
|
<link href="https://fonts.googleapis.com/css2?family=Sarabun:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
|
|
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
|
</head>
|
|
<body class="text-gray-800">
|
|
|
|
<div class="flex h-screen overflow-hidden">
|