Initial Commit

Just the very very basics are there now. It is not usable at all yet though.
This commit is contained in:
SileNce5k 2025-01-10 18:53:32 +01:00
commit c0af804da1
Signed by: SileNce
GPG key ID: B0A142BB4291B204
15 changed files with 2000 additions and 0 deletions

View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Discord Bot Management</title>
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<header class="dashboard">
<h1 class="dashboard-title">Dashboard</h1>
<div class="user-dropdown">
<input id="check01" type="checkbox" name="menu" />
<label class="dropdown-label" for="check01">
<%= user.username %>
</label>
<ul class="dropdown-submenu">
<li><a href="/users/<%= user.user_id %>/settings">Settings</a></li>
<li><a href="/logout">Logout</a></li>
</ul>
</div>
</header>
<%= footer %>
</body>
</html>