Dub / templates /index.html
imseldrith's picture
Create templates/index.html
b7ee2a7
raw
history blame contribute delete
735 Bytes
<html>
<head>
<title>Video Dubbing Application</title>
</head>
<body>
{% for message in get_flashed_messages() %}
{{ message }}
{% endfor %}
<form action="/" method="post" enctype="multipart/form-data">
<input type="radio" name="source" value="url" checked> Import from URL
<input type="text" name="video_url">
<br>
<input type="radio" name="source" value="file"> Upload Video File
<input type="file" name="video_file">
<br>
<label for="language">Dubbed Language:</label>
<select id="language" name="language">
<option value="hi">Hindi</option>
</select>
<br><br>
<input type="submit" value="Dub Video">
</form>
</body>
</html>