This commit is contained in:
anto
2025-01-12 18:18:11 +01:00
parent 09a392f78a
commit 51809f460e
2 changed files with 45 additions and 4 deletions

View File

@@ -39,6 +39,19 @@
<input type="number" id="duration" name="duration" value="0" min="0" required>
<button type="button" id="increment-button">+</button>
</div>
<label for="choice">Choose Option:</label>
<select id="choice" name="choice">
<option value="firstLast">First and Last</option>
<option value="oneByOne">One by One</option>
</select>
<br><br>
<div id="one-by-one-container" style="display: none;">
<label for="number-picker">Pick a Number:</label>
<select id="number-picker" name="number-picker"></select>
<button type="button" id="add-number-button">Add Number</button>
</div>
<br><br>
<div id="result-container"></div>
<br><br>
<button class="btn btn-primary" type="submit">Soumettre</button>
</form>