10 lines
337 B
PHP
10 lines
337 B
PHP
|
<h5>Créer une nouvelle Playlist</h5>
|
||
|
<?php
|
||
|
|
||
|
?>
|
||
|
|
||
|
<form action="<?= base_url('index.php/playlist/createPlaylistController') ?>" method="post">
|
||
|
<label for="name_playlist">Nom de la Playlist:</label>
|
||
|
<input type="text" name="name_playlist" id="name_playlist" required>
|
||
|
<button type="submit" name="submit">Créer</button>
|
||
|
</form>
|