2024-06-11 16:12:33 +02:00
|
|
|
<div class="content">
|
|
|
|
<section id="about" class="box">
|
|
|
|
<div class="box-content">
|
|
|
|
<img src=<?= base_url('assets/img/musique.png') ?> alt="Description de l'image 2">
|
|
|
|
<div class="text-content">
|
|
|
|
<h2>Créer une nouvelle Playlist</h2>
|
|
|
|
<form action="<?= base_url('index.php/playlist/createPlaylistController') ?>" method="post" class="playlist-form">
|
|
|
|
<label for="name_playlist" class="playlist-label">Nom de la Playlist:</label>
|
|
|
|
<input type="text" name="name_playlist" id="name_playlist" class="playlist-input" required>
|
|
|
|
<button type="submit" name="submit" class="playlist-button">Créer</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section id="product" class="box">
|
|
|
|
<div class="box-img">
|
|
|
|
<img src=<?= base_url('assets/img/musique1.png') ?> alt="Description de l'image 2">
|
|
|
|
<div class="text-content">
|
|
|
|
<h2>Créer une playlist aléatoire</h2>
|
|
|
|
<form action="<?= base_url('index.php/playlist/createPlaylistController') ?>" method="post" class="playlist-form">
|
|
|
|
<label for="name_playlist" class="playlist-label">Nom de la Playlist:</label>
|
|
|
|
<input type="text" name="name_playlist" id="name_playlist" class="playlist-input" required>
|
|
|
|
<button type="submit" name="submit" class="playlist-button">Créer</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
2024-06-05 13:51:23 +02:00
|
|
|
</form>
|