47 lines
1.8 KiB
Plaintext
47 lines
1.8 KiB
Plaintext
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Papo Dashboard</title>
|
|
<link rel="stylesheet" href="<%= baseRoot %>/public/styles/dashboard.css">
|
|
<link rel="stylesheet" href="<%= baseRoot %>/public/styles/dashboard.sections.css">
|
|
</head>
|
|
<body>
|
|
<div id="app"
|
|
data-view="dashboard"
|
|
data-base-root="<%= baseRoot %>"
|
|
data-base-dashboard="<%= baseDashboard %>"
|
|
data-base-auth="<%= baseAuth %>"
|
|
data-base-api="<%= baseApi %>"
|
|
data-guild-id="<%= guildId %>"
|
|
data-user-name="<%= user?.username || '' %>"
|
|
data-user-disc="<%= user?.discriminator || '' %>"
|
|
data-user-admin="<%= user?.isAdmin ? 'true' : 'false' %>">
|
|
<aside class="sidebar" id="sidebar-root"></aside>
|
|
<main class="content" id="content-root">
|
|
<header class="page-header">
|
|
<div>
|
|
<p class="muted">Papo Control</p>
|
|
<h1>Dashboard</h1>
|
|
<p class="muted" id="userInfo"></p>
|
|
</div>
|
|
<div class="header-actions">
|
|
<select id="guildSelect" class="select"></select>
|
|
<button id="logoutBtn" class="btn danger">Logout</button>
|
|
</div>
|
|
</header>
|
|
<section id="section-overview" class="section active"></section>
|
|
<section id="section-tickets" class="section"></section>
|
|
<section id="section-modules" class="section"></section>
|
|
<section id="section-settings" class="section"></section>
|
|
<section id="section-events" class="section"></section>
|
|
<section id="section-admin" class="section"></section>
|
|
</main>
|
|
</div>
|
|
<div id="modal-root"></div>
|
|
<div id="toast-root"></div>
|
|
<script type="module" src="<%= baseRoot %>/public/ts-build/app.js"></script>
|
|
</body>
|
|
</html>
|