15 lines
410 B
PHP
15 lines
410 B
PHP
|
|
<form method="post">
|
|
<!-- Markup example 2: input is after label -->
|
|
<label for="name">Nom de la playlist</label>
|
|
<input type="text" id="name" name="name" placeholder="name" required>
|
|
<div class="grid">
|
|
<label for="text">Déscription
|
|
<input type="text" id="Description" name="Description" placeholder="Description" >
|
|
</label>
|
|
</div>
|
|
<!-- Button -->
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
|