mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
52 lines
1.9 KiB
HTML
52 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title id="title">Video to document</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="mitte" id="mitte">
|
|
<div class="flagsBtns" id="flagsBtns">
|
|
<button class="de_Btn" id="de_Btn" onclick="changeLanguage('de')"><img src="flags/germany-flag-png-large.jpg" width="25px" height="20px"/></button>
|
|
<button class="eng_Btn" id="eng_Btn" onclick="changeLanguage('en')"><img src="flags/united-kingdom-flag-png-large.jpg" width="25px" height="20px"/></button>
|
|
<button class="in_Btn" id="in_Btn" onclick="changeLanguage('in')"><img src="flags/india-flag-png-large.png" width="25px" height="20px"/></button>
|
|
</div>
|
|
|
|
<h1 id="h1">Video to document</h1>
|
|
|
|
<div class="upload-container" id="uploadContainer">
|
|
<p id="p1">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="checkbox-group">
|
|
<label id="checkbox_group" for="checkbox-group">Choose prefered document style:</label>
|
|
<div class="checkbox-container">
|
|
<input type="checkbox" name ="docFormat" id="docFormat">
|
|
<label id="label_format" for="docFormat">Meeting report</label>
|
|
</div>
|
|
|
|
<div class="checkbox-container">
|
|
<input type="checkbox" name="docFormat" id="docFormatSummary">
|
|
<label id="label_summary" for="docFormatSummary">Summary with timestamps</label>
|
|
</div>
|
|
</div>
|
|
|
|
<button class="submit-btn" id="submitButton" onclick="checkBoxes()">Submit</button>
|
|
|
|
<div class="progressbar">
|
|
<div class="progress_fill"></div>
|
|
<span class="progress_text">0%</span>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
<script src="./renderer.js"></script>
|
|
</body>
|
|
</html> |