-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
39 lines (39 loc) · 1.11 KB
/
index.html
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
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Online Video Converter</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
/>
</head>
<body>
<div class="container">
<br /><br />
<h1 style="text-align: center;">Online Video Converter</h1>
<form action="/convert" method="post" enctype="multipart/form-data">
<div class="form-group">
<input type="file" name="file"/>
</div>
<div class="form-group">
<label for="to">To:</label>
<select class="form-control" name="to">
<option>mp4</option>
<option>flv</option>
<option>avi</option>
<option>webm</option>
<option>mov</option>
</select>
</div>
<br />
<div class="form-group">
<button class="btn btn-danger btn-block">
Convert
</button>
</div>
</form>
</div>
</body>
</html>