mirror of
https://github.com/nfonteyne/octane-website.git
synced 2026-09-03 23:24:48 +02:00
40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Répertoire — Octane</title>
|
|
<script src="/js/theme-init.js"></script>
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
</head>
|
|
<body>
|
|
<header class="app-header">
|
|
<nav id="main-nav"></nav>
|
|
</header>
|
|
<main>
|
|
<h1>Répertoire</h1>
|
|
<p class="page-subtitle">Les morceaux travaillés par le groupe, avec liens d'écoute et tutos par instrument.</p>
|
|
<div id="error"></div>
|
|
|
|
<div class="panel">
|
|
<h2 style="margin-top:0">Ajouter un morceau</h2>
|
|
<form id="add-song-form" class="stacked-form">
|
|
<label>Titre <input name="title" required></label>
|
|
<label>Artiste <input name="artist" required></label>
|
|
<label>Notes <input name="notes"></label>
|
|
<label>Lien YouTube <input name="youtubeUrl" type="url" placeholder="https://youtube.com/watch?v=..."></label>
|
|
<label>Lien Spotify <input name="spotifyUrl" type="url" placeholder="https://open.spotify.com/track/..."></label>
|
|
<button type="submit">Ajouter au répertoire</button>
|
|
</form>
|
|
</div>
|
|
|
|
<h2>Morceaux travaillés</h2>
|
|
<div id="songs-list" class="card-grid"></div>
|
|
</main>
|
|
|
|
<script src="/js/api.js"></script>
|
|
<script src="/js/render.js"></script>
|
|
<script src="/js/nav.js"></script>
|
|
<script src="/js/repertoire.js"></script>
|
|
</body>
|
|
</html>
|