File size: 828 Bytes
155198f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1.0" />
		<title>VIDEO CUTTER</title>
	</head>
	<body>
		<h1>VIDEO CUTTER</h1>
		<div>
			<p>What it can do:</p>
			<p>Provide video cutting functionality.</p>
		</div>
		<form
			action="/video_cutter"
			method="post"
			enctype="multipart/form-data"
		>
			<label for="video">Video:</label><br />
			<input type="file" id="video" name="video" /><br />
			<label for="start_time">Start Time:</label><br />
			<input type="text" id="start_time" name="start_time" /><br />
			<label for="end_time">End Time:</label><br />
			<input type="text" id="end_time" name="end_time" /><br /><br />
			<input type="submit" value="Submit" />
		</form>
		<a href="/">Go back to index</a>
	</body>
</html>