File size: 1,124 Bytes
0ea56ae |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Manimator - AI Video Generator</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
<header>
<h1>Manimator</h1>
<p>Your AI-powered video generator</p>
</header>
<div class="container">
<form id="promptForm" method="POST" action="/">
<label for="prompt">Enter your prompt:</label>
<input type="text" id="prompt" name="prompt" required autocomplete="off" placeholder="Type something awesome...">
<button type="submit">Generate Video</button>
</form>
</div>
<!-- Loading overlay (hidden by default) -->
<div id="loading" class="loading-overlay">
<div class="spinner"></div>
<p>Generating your video... please wait</p>
</div>
<script src="{{ url_for('static', filename='script.js') }}"></script>
</body>
</html>
|