Add initial implementation of GD Demand List application with multi-page support

This commit is contained in:
2026-03-28 00:23:52 -05:00
parent f1c95e36d7
commit f8fcec309b
6 changed files with 202 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Players — GD Demand List</title>
<link rel="stylesheet" href="styles.css">
</head>
<body data-page="players">
<header>
<h1>Players</h1>
<nav>
<a href="index.html">Home</a>
<a href="lists.html">Lists</a>
</nav>
</header>
<main>
<section class="panel">
<h2>Add Player</h2>
<form id="player-form">
<input id="player-name" placeholder="Player name" required />
<button type="submit">Add</button>
</form>
</section>
<section class="panel">
<h2>Players</h2>
<ul id="players"></ul>
</section>
</main>
<script src="app.js"></script>
</body>
</html>