veo-ai-frontend / index.html
officialsstein's picture
Upload 3 files
dbcfbea verified
raw
history blame contribute delete
477 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Veo AI Generator</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1>Veo AI Generator</h1>
<input type="text" id="prompt" placeholder="Enter your video prompt" />
<button onclick="generate()">Generate Video</button>
<p id="status"></p>
<video id="result" controls style="display:none; margin-top:20px;"></video>
</div>
<script src="js/app.js"></script>
</body>
</html>