Spaces:
Build error
Build error
Commit
·
b7ee2a7
1
Parent(s):
edc7289
Create templates/index.html
Browse files- templates/index.html +24 -0
templates/index.html
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<html>
|
2 |
+
<head>
|
3 |
+
<title>Video Dubbing Application</title>
|
4 |
+
</head>
|
5 |
+
<body>
|
6 |
+
{% for message in get_flashed_messages() %}
|
7 |
+
{{ message }}
|
8 |
+
{% endfor %}
|
9 |
+
<form action="/" method="post" enctype="multipart/form-data">
|
10 |
+
<input type="radio" name="source" value="url" checked> Import from URL
|
11 |
+
<input type="text" name="video_url">
|
12 |
+
<br>
|
13 |
+
<input type="radio" name="source" value="file"> Upload Video File
|
14 |
+
<input type="file" name="video_file">
|
15 |
+
<br>
|
16 |
+
<label for="language">Dubbed Language:</label>
|
17 |
+
<select id="language" name="language">
|
18 |
+
<option value="hi">Hindi</option>
|
19 |
+
</select>
|
20 |
+
<br><br>
|
21 |
+
<input type="submit" value="Dub Video">
|
22 |
+
</form>
|
23 |
+
</body>
|
24 |
+
</html>
|