File size: 614 Bytes
39b6398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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>