22 lines
622 B
HTML
Executable File
22 lines
622 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Dashboard</title>
|
|
<link rel="stylesheet" href="/public.css">
|
|
<link rel="stylesheet" href="/dashboard.css">
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
|
|
<script src="bots.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<div id="main">
|
|
<div id="container">
|
|
<h1>Choose the bot you want to edit</h1>
|
|
<div id="grid" class="bot-list">
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |