correction beug header + footer + css & php pour les playlist

This commit is contained in:
2024-06-05 14:57:43 +02:00
parent 1768f21e86
commit 9d492207b0
8 changed files with 33 additions and 101 deletions

View File

@@ -1,9 +1,9 @@
<?php
echo "<div class='playlist-container'>";
echo "<form action='" . base_url("index.php/playlist/MenuCreate/") . "' method='post'>";
echo "<button type='submit' class='create-button'>Create</button>";
echo "</form>";
echo "<div class='playlist-container'>";
foreach($playlists as $playlist){
echo "<div class='playlist-item'>";
echo "<header class='short-text'>";
@@ -12,7 +12,6 @@ foreach($playlists as $playlist){
echo "<button type='submit' class='delete-button'>Delete</button>";
echo "</form>";
echo "</header>";
// If you want to add an image, you can add it here
echo "</div>";
}
echo "</div>";