Trkaga commited on
Commit
9277855
·
verified ·
1 Parent(s): 595fbed

Create templates/index.html

Browse files
Files changed (1) hide show
  1. 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>