This commit is contained in:
anto
2025-01-12 17:20:15 +01:00
parent 188d7ac004
commit 09a392f78a
5 changed files with 75 additions and 38 deletions

View File

@@ -20,13 +20,20 @@
</head>
<body>
<!-- formulaire -->
<div id="form-container" class="form-container">
<div class="form-content">
<form id="my-form">
<div id="form-container" class="form-container">
<div class="form-content">
<h1>Formulaire</h1>
<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>
<label for="resolution">Résolution :</label>
<select id="resolution" name="resolution" required>
<option value="1920x1080">1920x1080</option>
<option value="1280x720">1280x720</option>
</select>
<br><br>
<label for="duration">Durée (en minutes) :</label>
<div class="duration-input">
<button type="button" id="decrement-button">-</button>
<input type="number" id="duration" name="duration" value="0" min="0" required>
@@ -35,9 +42,9 @@
<br><br>
<button class="btn btn-primary" type="submit">Soumettre</button>
</form>
<button class="btn btn-primary" id="close-form-button">Fermer</button>
</div>
<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">