Ashrafb commited on
Commit
a5d67cd
·
verified ·
1 Parent(s): a8e83eb

Create static/index.html

Browse files
Files changed (1) hide show
  1. static/index.html +13 -0
static/index.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Face2Vintage</title>
5
+ </head>
6
+ <body>
7
+ <h1>Upload Image</h1>
8
+ <form action="/process_image/" method="post" enctype="multipart/form-data">
9
+ <input type="file" name="file">
10
+ <input type="submit" value="Upload Image">
11
+ </form>
12
+ </body>
13
+ </html>