mise en forme de la page playlist contenant les musiques

This commit is contained in:
Yann KERAUDREN 2024-06-19 14:45:06 +02:00
parent e7aea25b91
commit 2a094b08aa

@ -9,11 +9,10 @@
<!-- Section pour afficher les chansons de son playlist -->
<?php if (!empty($songs)): ?>
<section class="current-songs">
<h5>Chansons actuelles :</h5>
<ul>
<h5>Chansons actuelles :</h5>
<section class="list">
<?php foreach($songs as $song): ?>
<li class="play">
<div><article>
<?= $song->name; ?>
<!-- Formulaire pour supprimer la chanson de la playlist -->
<form action="<?= site_url('playlist/remove_song'); ?>" method="post" style="display:inline;">
@ -21,9 +20,8 @@
<input type="hidden" name="songId" value="<?= $song->id; ?>">
<button type="submit">Supprimer</button>
</form>
</li>
</article></div>
<?php endforeach; ?>
</ul>
</section>
<?php endif; ?>