167 lines
8.8 KiB
PHP
167 lines
8.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="pt-BR">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?= $title ?? 'Dashboard' ?> - DNSBlock Cliente</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
|
<style>
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
[x-cloak] {
|
|
display: none !important;
|
|
}
|
|
</style>
|
|
<script>
|
|
tailwind.config = {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
50: '#fef2f2',
|
|
100: '#fee2e2',
|
|
500: '#ef4444',
|
|
600: '#dc2626',
|
|
700: '#b91c1c',
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body class="bg-gray-50 text-gray-800 font-sans antialiased" x-data="{ sidebarOpen: false }">
|
|
|
|
<!-- Mobile Header -->
|
|
<div class="md:hidden flex items-center justify-between bg-white border-b border-gray-200 p-4 sticky top-0 z-30">
|
|
<a href="/client/dashboard" class="font-bold text-xl tracking-tight">DNS<span
|
|
class="text-primary-600">Block</span></a>
|
|
<button @click="sidebarOpen = !sidebarOpen" class="text-gray-500 focus:outline-none">
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16">
|
|
</path>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="flex h-screen overflow-hidden">
|
|
<!-- Sidebar -->
|
|
<aside :class="sidebarOpen ? 'translate-x-0' : '-translate-x-full'"
|
|
class="fixed inset-y-0 left-0 z-40 w-64 bg-white border-r border-gray-200 transition-transform duration-300 md:relative md:translate-x-0 flex flex-col">
|
|
<div class="h-16 flex items-center px-6 border-b border-gray-100">
|
|
<a href="/client/dashboard" class="font-bold text-2xl tracking-tight text-gray-900">DNS<span
|
|
class="text-primary-600">Block</span></a>
|
|
</div>
|
|
|
|
<nav class="flex-1 px-4 py-6 space-y-1 overflow-y-auto">
|
|
<a href="/client/dashboard"
|
|
class="flex items-center px-4 py-3 text-gray-700 rounded-lg hover:bg-primary-50 hover:text-primary-700 transition-colors group <?= ($_SERVER['REQUEST_URI'] == '/client/dashboard') ? 'bg-primary-50 text-primary-700' : '' ?>">
|
|
<svg class="w-5 h-5 mr-3 text-gray-400 group-hover:text-primary-500" fill="none"
|
|
stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M4 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2V6zM14 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2V6zM4 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2v-2zM14 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2v-2z">
|
|
</path>
|
|
</svg>
|
|
Visão Geral
|
|
</a>
|
|
|
|
<div class="pt-4 pb-2">
|
|
<p class="px-4 text-xs font-semibold text-gray-400 uppercase tracking-wider">Consultas</p>
|
|
</div>
|
|
|
|
<a href="/client/servers"
|
|
class="flex items-center px-4 py-3 text-gray-700 rounded-lg hover:bg-primary-50 hover:text-primary-700 transition-colors group <?= (strpos($_SERVER['REQUEST_URI'], '/client/servers') !== false) ? 'bg-primary-50 text-primary-700' : '' ?>">
|
|
<svg class="w-5 h-5 mr-3 text-gray-400 group-hover:text-primary-500" fill="none"
|
|
stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M5 12h14M5 12a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v4a2 2 0 01-2 2M5 12a2 2 0 00-2 2v4a2 2 0 002 2h14a2 2 0 002-2v-4a2 2 0 00-2-2m-2-4h.01M17 16h.01">
|
|
</path>
|
|
</svg>
|
|
Meus Servidores
|
|
</a>
|
|
|
|
<a href="/client/orders"
|
|
class="flex items-center px-4 py-3 text-gray-700 rounded-lg hover:bg-primary-50 hover:text-primary-700 transition-colors group <?= (strpos($_SERVER['REQUEST_URI'], '/client/orders') !== false) ? 'bg-primary-50 text-primary-700' : '' ?>">
|
|
<svg class="w-5 h-5 mr-3 text-gray-400 group-hover:text-primary-500" fill="none"
|
|
stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z">
|
|
</path>
|
|
</svg>
|
|
Ordens Judiciais
|
|
</a>
|
|
</nav>
|
|
|
|
</aside>
|
|
|
|
<!-- Main Content -->
|
|
<main class="flex-1 overflow-x-hidden overflow-y-auto bg-gray-50">
|
|
<!-- Topbar -->
|
|
<header class="bg-white shadow-sm sticky top-0 z-20">
|
|
<div class="max-w-7xl mx-auto py-4 px-4 sm:px-6 lg:px-8 flex justify-between items-center">
|
|
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
|
|
<?= $title ?? 'Dashboard' ?>
|
|
</h2>
|
|
<div class="flex items-center space-x-4">
|
|
<div class="relative" x-data="{ userMenuOpen: false }">
|
|
<button @click="userMenuOpen = !userMenuOpen" class="flex items-center focus:outline-none">
|
|
<div
|
|
class="h-8 w-8 rounded-full bg-primary-100 flex items-center justify-center text-primary-700 font-bold">
|
|
<?= substr($_SESSION['user_name'] ?? 'C', 0, 1) ?>
|
|
</div>
|
|
<span
|
|
class="ml-2 text-sm font-medium text-gray-700 hidden md:block"><?= $_SESSION['user_name'] ?? 'Cliente' ?></span>
|
|
<svg class="w-4 h-4 ml-1 text-gray-500" fill="none" stroke="currentColor"
|
|
viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M19 9l-7 7-7-7"></path>
|
|
</svg>
|
|
</button>
|
|
|
|
<div x-show="userMenuOpen" @click.away="userMenuOpen = false"
|
|
class="absolute right-0 mt-2 w-48 bg-white rounded-md shadow-lg py-1 z-50 ring-1 ring-black ring-opacity-5"
|
|
style="display: none;">
|
|
<a href="/client/profile"
|
|
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Meu Perfil</a>
|
|
<a href="/logout"
|
|
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Sair</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
|
<?php if (isset($_SESSION['flash_success'])): ?>
|
|
<div class="mb-4 bg-green-100 border border-green-400 text-green-700 px-4 py-3 rounded relative"
|
|
role="alert">
|
|
<span class="block sm:inline"><?= $_SESSION['flash_success'] ?></span>
|
|
<?php unset($_SESSION['flash_success']); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if (isset($_SESSION['flash_error'])): ?>
|
|
<div class="mb-4 bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative" role="alert">
|
|
<span class="block sm:inline"><?= $_SESSION['flash_error'] ?></span>
|
|
<?php unset($_SESSION['flash_error']); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if (isset($content))
|
|
include $content; ?>
|
|
</div>
|
|
</main>
|
|
|
|
<!-- Overlay -->
|
|
<div x-show="sidebarOpen" @click="sidebarOpen = false"
|
|
class="fixed inset-0 z-30 bg-black bg-opacity-50 md:hidden" x-transition.opacity></div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|