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