mirror of
https://grond.iut-fbleau.fr/stiti/SAE_2.02
synced 2024-11-10 05:11:42 +01:00
25 lines
951 B
PHP
25 lines
951 B
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="fr">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Ajouter un Album à la Playlist</title>
|
||
|
<link rel="stylesheet" href="<?php echo base_url('assets/css/style.css'); ?>">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<h1>Ajouter un Album à la Playlist</h1>
|
||
|
<?php echo form_open('playlists/add_album/'.$playlist_id); ?>
|
||
|
<div class="form-group">
|
||
|
<label for="album_id">Sélectionner un Album :</label>
|
||
|
<select name="album_id" class="form-control" required>
|
||
|
<?php foreach ($albums as $album): ?>
|
||
|
<option value="<?php echo $album->id; ?>"><?php echo $album->name; ?></option>
|
||
|
<?php endforeach; ?>
|
||
|
</select>
|
||
|
</div>
|
||
|
<button type="submit" class="btn btn-primary">Ajouter</button>
|
||
|
<?php echo form_close(); ?>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|