Files
video2document/electron/main/index.html
T
2025-11-04 17:51:39 +01:00

32 lines
899 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Upload Drag and Drop + Button</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="upload-container" id="uploadContainer">
<p>Drag and drop video file</p>
<div class="file-name" id="fileName">No video chosen</div>
</div>
<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>
<script src="script.js"></script>
</body>
</html>