37 lines
1.2 KiB
Plaintext
37 lines
1.2 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 - Auswahl</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="selection"
|
|
data-base-root="<%= baseRoot %>"
|
|
data-base-dashboard="<%= baseDashboard %>"
|
|
data-base-auth="<%= baseAuth %>"
|
|
data-base-api="<%= baseApi %>">
|
|
<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>Waehle eine Guild aus</h1>
|
|
<p class="muted">Nur Guilds, auf denen der Bot ist.</p>
|
|
</div>
|
|
<div class="header-actions">
|
|
<button id="logoutBtn" class="btn danger">Logout</button>
|
|
</div>
|
|
</header>
|
|
<section id="guild-grid-section">
|
|
<div id="guildGrid" class="grid cards-grid"></div>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
<script type="module" src="<%= baseRoot %>/public/ts-build/app.js"></script>
|
|
</body>
|
|
</html>
|