This commit is contained in:
anto
2025-01-12 15:55:26 +01:00
parent 28833a67f1
commit 188d7ac004
3 changed files with 99 additions and 4 deletions

View File

@@ -19,6 +19,26 @@
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0/dist/css/select2.min.css" rel="stylesheet" />
</head>
<body>
<!-- formulaire -->
<div id="form-container" class="form-container">
<div class="form-content">
<form id="my-form">
<label for="name">Nom :</label>
<input type="text" id="name" name="name" required>
<br><br>
<label for="duration">Durée (en secondes) :</label>
<div class="duration-input">
<button type="button" id="decrement-button">-</button>
<input type="number" id="duration" name="duration" value="0" min="0" required>
<button type="button" id="increment-button">+</button>
</div>
<br><br>
<button class="btn btn-primary" type="submit">Soumettre</button>
</form>
<button class="btn btn-primary" id="close-form-button">Fermer</button>
</div>
</div>
<!-- page classique -->
<div id="section" class="container mt-5">
<div class="row">
<div class="col-md-12">
@@ -40,7 +60,7 @@
<select name="videos" id="video_selector" class="select2">
</select>
<div class="buttons-container">
<button class="btn btn-primary" id="projets">
<button class="btn btn-primary" id="show-form-button">
<span> + </span>
</button>
</div>
@@ -69,9 +89,6 @@
export images
</button></th>
</tr>
<tr>
<th colspan="3" scope="col">images</th>
</tr>
</thead>
<tbody id="imageSource"></tbody>
</table>