Files
video2document/electron/main/index.html
T

26 lines
692 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>
<form method="post" enctype="multipart/form-data" >
<input type="file" name="uploaddatei" >
<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">Upload video</button>
<input type="file" id="videoUpload" accept="video/*">
<script src="script.js"></script>
</body>
</html>