manimator / templates /index.html
theminji's picture
Upload 7 files
0ea56ae verified
raw
history blame
1.12 kB
<!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>