Spaces:
Running
Running
Create templates/index.html
Browse files- templates/index.html +19 -0
templates/index.html
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>AI Video SaaS</title>
|
| 5 |
+
</head>
|
| 6 |
+
<body>
|
| 7 |
+
|
| 8 |
+
<h1>🎬 AI Video Generator</h1>
|
| 9 |
+
|
| 10 |
+
<textarea id="prompt"></textarea>
|
| 11 |
+
|
| 12 |
+
<button onclick="generate()">Generate</button>
|
| 13 |
+
|
| 14 |
+
<video id="video" controls></video>
|
| 15 |
+
|
| 16 |
+
<script src="/static/app.js"></script>
|
| 17 |
+
|
| 18 |
+
</body>
|
| 19 |
+
</html>
|