Files
vpn-proxy/web/index.html

55 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VPN_CLIENT // SECURE_SHELL</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/lucide@latest"></script>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body class="min-h-screen flex flex-col relative selection:bg-[#00ff41] selection:text-black">
<!-- CRT Effects -->
<div class="matrix-bg fixed inset-0 z-0 pointer-events-none"></div>
<div
class="fixed inset-0 z-40 pointer-events-none bg-[radial-gradient(circle_at_50%_50%,rgba(0,255,65,0.03)_0%,transparent_100%)]">
</div>
<!-- include "components/header.html" -->
<!-- Main Content -->
<main
class="flex-grow max-w-[1400px] w-full mx-auto px-4 md:px-6 py-4 grid grid-cols-1 lg:grid-cols-12 gap-4 relative z-10">
<!-- Left Column: Main Controls -->
<div class="lg:col-span-7 flex flex-col gap-4">
<!-- include "components/switch.html" -->
<!-- include "components/proxy_chain.html" -->
<!-- include "components/fallback_config.html" -->
<!-- include "components/connection_info.html" -->
<!-- Placeholder for Map if needed later -->
<!-- include "components/map.html" -->
</div>
<!-- Right Column: Subscription & Servers -->
<div class="lg:col-span-5 flex flex-col gap-4">
<!-- include "components/subscription.html" -->
<!-- include "components/server_list.html" -->
<!-- include "components/logs.html" -->
</div>
</main>
<!-- include "components/footer.html" -->
<script src="/static/js/app.js"></script>
</body>
</html>