Chechboxes and submit button

This commit is contained in:
Verena Schulz
2025-11-05 17:05:29 +01:00
parent 5d9e41d0f3
commit 99c8bea0be
2 changed files with 38 additions and 10 deletions
+13 -6
View File
@@ -19,13 +19,20 @@
<button class="custom-btn" id="manualUploadBtn">Search video</button>
<input type="file" id="videoUpload" accept="video/*">
<div class="dropdown-container">
<label for="docFormat">Choose prefered document style:</label>
<select name="docFormat" id="docFormat">
<option value"bericht-inhalt-zeitmarken">Meeting report and summary with timestamps</option>
<option value"custom">custom</option>
</select>
<div class="checkbox-group">
<label for="checkbox-group">Choose prefered document style:</label>
<div class="checkbox-container">
<input type="checkbox" id="docFormat">
<label for "docFormat">Meeting report and summary with timestamps</label>
</div>
<div class="checkbox-container">
<input type="checkbox" id="docFormatCustom">
<label for "docFormatCustom">Custom</label>
</div>
</div>
<button class="submit-btn" id="submitButton">Submit Video</button>
<script src="script.js"></script>
</body>