sonuprasad commited on
Commit
e03d5da
1 Parent(s): e3b1606

Upload home.html with huggingface_hub

Browse files
Files changed (1) hide show
  1. home.html +24 -0
home.html ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Deepfake Detection</title>
5
+ <link rel="stylesheet" type="text/css" href="/home1.css">
6
+ </head>
7
+ <body >
8
+
9
+ <div class="container">
10
+ <h1>Upload an Image for<br></h1><h2> Deepfake Detection</h2>
11
+ <form method="POST" enctype="multipart/form-data">
12
+ <!-- <input type="file" name="file" id="fileInput" color="transparent" accept="image/*"> -->
13
+ <label for="fileInput" class="file-label">Choose an Image</label>
14
+ <button type="submit" class="detect-button">Detect</button>
15
+ </form>
16
+ <div id="resultContainer" style="display:none;">
17
+ <h2>Result</h2>
18
+ <div id="statistics">
19
+ <!-- Statistical results will be displayed here -->
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </body>
24
+ </html>