29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Panel</title>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
|
<script src="https://unpkg.com/htmx.org@2.0.4"
|
|
integrity="sha384-HGfztofotfshcF7+8n44JQL2oJmowVChPTg48S+jvZoztPfvwD79OC/LTtG6dMp+"
|
|
crossorigin="anonymous"></script>
|
|
<script src="/admin/panel/api.js"></script>
|
|
</head>
|
|
|
|
<body class="m-0 w-dvw h-dvh bg-zinc-800 grid place-center">
|
|
<div class="mx-auto h-dvh w-[90dvw] lg:w-[70dvw]">
|
|
<button class="h-1/20 w-full text-zinc-200 border-2 rounded my-[25px]" id="send">Send</button>
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-2 bg-zinc-700 px-2 overflow-auto h-[calc(95dvh-50px)] box-border"
|
|
id="verix_container">
|
|
</div>
|
|
</div>
|
|
<div class="hidden fixed top-0 left-0 w-dvw h-dvh z-10 backdrop-brightness-30" id="hv">
|
|
<img src="" class="h-70dvh lg:w-[40dvw] fixed top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 z-20"
|
|
alt="img" />
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|