nagasurendra's picture
Create templates/index.html
39b6398 verified
raw
history blame contribute delete
614 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Comparison Tool</title>
</head>
<body>
<h1>Upload Two Videos to Compare</h1>
<form action="/" method="POST" enctype="multipart/form-data">
<label for="video1">Video 1:</label>
<input type="file" name="video1" id="video1" required><br><br>
<label for="video2">Video 2:</label>
<input type="file" name="video2" id="video2" required><br><br>
<button type="submit">Submit</button>
</form>
</body>
</html>