Shiwanni commited on
Commit
da75a07
·
verified ·
1 Parent(s): b1e6d2e

Delete templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +0 -30
templates/index.html DELETED
@@ -1,30 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Deepfake Detection</title>
5
- <link rel="stylesheet" href="/static/style.css">
6
- </head>
7
- <body>
8
- <div class="container">
9
- <h1>Deepfake Detection</h1>
10
- <p>Upload an image to check if it's a deepfake</p>
11
-
12
- <form id="uploadForm">
13
- <input type="file" id="fileInput" accept="image/*">
14
- <button type="submit">Analyze</button>
15
- </form>
16
-
17
- <div id="result" class="hidden">
18
- <h2>Result</h2>
19
- <div id="resultContent"></div>
20
- </div>
21
-
22
- <div id="previewContainer" class="hidden">
23
- <h3>Preview</h3>
24
- <img id="preview" src="#" alt="Preview">
25
- </div>
26
- </div>
27
-
28
- <script src="/static/script.js"></script>
29
- </body>
30
- </html>