Spaces:
Runtime error
Runtime error
File size: 1,763 Bytes
a3e4b35 a0b184e a3e4b35 a0b184e a3e4b35 |
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
<!DOCTYPE html>
<html>
<head>
<title>Video Dubbing App</title>
<style>
.container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
}
.form {
display: flex;
flex-direction: column;
align-items: center;
background-color: #f2f2f2;
padding: 30px;
border-radius: 10px;
box-shadow: 2px 2px 5px #888888;
}
h2 {
margin-bottom: 30px;
}
input[type="file"] {
margin-bottom: 20px;
}
input[type="submit"] {
margin-top: 20px;
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
.or {
margin-top: 20px;
margin-bottom: 20px;
font-size: 16px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h2>Dub Your Videos</h2>
<form class="form" action="/dub" method="post" enctype="multipart/form-data">
<input type="file" name="video">
<div class="or">OR</div>
<input type="text" name="url" placeholder="Enter video URL">
<input type="submit" value="Dub Video">
</form>
</div>
</body>
</html> |