53 lines
1.5 KiB
HTML
53 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Edit List - GD fedl</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body data-page="admelist">
|
|
<header>
|
|
<h1>fedl</h1>
|
|
<nav>
|
|
<a href="index.html">Home</a>
|
|
<a href="serverlist.html">Server List</a>
|
|
<a href="lists.html">Static List</a>
|
|
<a href="players.html">Players</a>
|
|
</nav>
|
|
</header>
|
|
<main class="admin-shell">
|
|
<section class="panel admin-panel">
|
|
<div class="admin-toolbar">
|
|
<div>
|
|
<p class="hero-kicker">Editor</p>
|
|
<h2>Manage the live list</h2>
|
|
<p id="admin-status" class="muted">Loading list data...</p>
|
|
</div>
|
|
<div class="admin-actions">
|
|
<input id="admin-search" type="text" placeholder="Search rows..." />
|
|
<button id="add-row" type="button" class="btn ghost-btn">Add Row</button>
|
|
<button id="save-list" type="button" class="btn">Save List</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="table-wrap">
|
|
<table class="levels-table admin-table">
|
|
<thead>
|
|
<tr>
|
|
<th style="width:90px">#</th>
|
|
<th style="width:140px">Level</th>
|
|
<th>Title</th>
|
|
<th>Video URL</th>
|
|
<th style="width:120px">Delete</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="admin-list-body"></tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|