SAVAI123 commited on
Commit
caa29c9
·
verified ·
1 Parent(s): b2cf53f

Rename templates to templates/index.html

Browse files
Files changed (2) hide show
  1. templates +0 -0
  2. templates/index.html +13 -0
templates DELETED
File without changes
templates/index.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Age Transformation App</title>
5
+ </head>
6
+ <body>
7
+ <h1>Upload an image to make it look younger</h1>
8
+ <form action="/" method="post" enctype="multipart/form-data">
9
+ <input type="file" name="file" accept="image/*">
10
+ <input type="submit" value="Transform">
11
+ </form>
12
+ </body>
13
+ </html>