47 lines
1.7 KiB
PHP
47 lines
1.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="th" dir="ltr" data-bs-theme="light">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>เข้าสู่ระบบ | ระบบขออนุมัติเดินทางประชุม-อบรม</title>
|
|
|
|
<!-- Favicon -->
|
|
<link rel="shortcut icon" href="<?= BASE_URL ?>/assets/img/logo.png" type="image/png">
|
|
|
|
<!-- Google Fonts (Inter) -->
|
|
<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=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- Font Awesome -->
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
|
|
|
|
<!-- Custom Auth CSS -->
|
|
<link rel="stylesheet" href="<?= BASE_URL ?>/assets/css/auth.css?v=<?= time() ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Particle Background Canvas -->
|
|
<canvas id="particleCanvas"></canvas>
|
|
|
|
<!-- Animated Gradient Background Elements -->
|
|
<div class="bg-shape shape-1"></div>
|
|
<div class="bg-shape shape-2"></div>
|
|
<div class="bg-shape shape-3"></div>
|
|
|
|
<!-- Main Content -->
|
|
<div class="auth-wrapper">
|
|
<?= $content ?>
|
|
</div>
|
|
|
|
<!-- Bootstrap 5 JS Bundle -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- Custom Auth JS -->
|
|
<script src="<?= BASE_URL ?>/assets/js/auth.js?v=<?= time() ?>"></script>
|
|
</body>
|
|
</html>
|