2026-07-08 11:05:21 +02:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="fr">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<title>Suggestions — Octane</title>
|
|
|
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<header class="app-header">
|
|
|
|
|
<nav id="main-nav"></nav>
|
|
|
|
|
</header>
|
|
|
|
|
<main>
|
|
|
|
|
<h1>Suggestions de morceaux</h1>
|
2026-07-08 11:50:12 +02:00
|
|
|
<p class="page-subtitle">Proposez un morceau et votez sur les suggestions des autres — chaque vote est nominatif.</p>
|
2026-07-08 11:05:21 +02:00
|
|
|
<div id="error"></div>
|
|
|
|
|
|
2026-07-08 11:50:12 +02:00
|
|
|
<div class="panel">
|
|
|
|
|
<h2 style="margin-top:0">Proposer un morceau</h2>
|
|
|
|
|
<form id="add-suggestion-form" class="stacked-form">
|
|
|
|
|
<label>Titre <input name="title" required></label>
|
|
|
|
|
<label>Artiste <input name="artist"></label>
|
|
|
|
|
<label>Lien YouTube <input name="youtubeUrl" type="url" required placeholder="https://youtube.com/watch?v=..."></label>
|
|
|
|
|
<label>Note / détails <textarea name="description" placeholder="Pourquoi ce morceau, difficulté, arrangement envisagé..."></textarea></label>
|
|
|
|
|
<button type="submit">Proposer</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
2026-07-08 11:05:21 +02:00
|
|
|
|
|
|
|
|
<h2>Toutes les suggestions</h2>
|
2026-07-08 11:50:12 +02:00
|
|
|
<div id="suggestions-list" class="card-grid"></div>
|
2026-07-08 11:05:21 +02:00
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
<script src="/js/api.js"></script>
|
|
|
|
|
<script src="/js/render.js"></script>
|
|
|
|
|
<script src="/js/nav.js"></script>
|
|
|
|
|
<script src="/js/suggestions.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|