mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
26 lines
601 B
HTML
26 lines
601 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/*">
|
|
|
|
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |