Initial commit - Admin Template HTML
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>EDK - Error 500 3</title>
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.13.0/dist/cdn.min.js"></script>
|
||||
<script src="js/sidebar3.js"></script>
|
||||
<script src="js/topbar3.js"></script>
|
||||
<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=Poppins:wght@300;400;450;500;600;700;800&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="css/style3.css">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div x-data="{ side: true, isMobile: false, aktif: 'error500' }" x-init="isMobile = window.innerWidth <= 768; if(isMobile){ side = false } window.addEventListener('resize', function(){ isMobile = window.innerWidth <= 768; if(isMobile){ side = false } else { side = true } })">
|
||||
<div x-show="side && isMobile" x-on:click="side = false" class="fixed inset-0 bg-black/60 z-40 md:hidden"></div>
|
||||
<crm-sidebar-3></crm-sidebar-3>
|
||||
<main id="main" x-bind:class="{ 'shift': side }">
|
||||
<crm-topbar-3></crm-topbar-3>
|
||||
<div class="p-4 md:p-6 flex items-center justify-center" style="min-height: calc(100vh - 64px);">
|
||||
<div class="text-center">
|
||||
<p class="text-9xl font-bold text-gray-300">500</p>
|
||||
<h1 class="text-4xl font-bold text-gray-800 mt-4">Internal Server Error</h1>
|
||||
<p class="text-gray-500 mt-2">The server encountered an internal error and could not complete your request.</p>
|
||||
<a href="#" x-on:click.prevent="aktif = 'crmdashboard'" class="inline-flex items-center gap-2 mt-6 px-5 py-2.5 text-sm font-semibold rounded-lg text-white transition" style="background: linear-gradient(135deg, #6366f1, #4f46e5);">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16l-4-4m0 0l4-4m-4 4h18"/></svg>
|
||||
Go to Dashboard
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
<script src="js/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user