-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (45 loc) · 1.6 KB
/
index.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Day #77 - Image Detector AI | AsmrProg</title>
</head>
<body>
<h1>AI Image Detector</h1>
<div class="wrapper">
<div class="upload-container">
<h3>Upload Your Image</h3>
<div class="buttons">
<input type="file" id="imageInput" accept="image/*" style="display: none;">
<button class="file-input-button" onclick="document.getElementById('imageInput').click();">Choose
File</button>
<button id="uploadButton">Analyze Image</button>
</div>
<img src="not-found.jpg" id="imagePreview">
</div>
<div class="colors-container">
<p class="error">Nothing to show...</p>
</div>
</div>
<div class="tags-container">
<h3>Image Data</h3>
<p class="error">Nothing to show...</p>
<div class="results"></div>
<div class="buttons">
<button id="seeMoreButton" style="display: none;">See More</button>
<button id="exportTagsButton" style="display: none;">Export Tags</button>
</div>
</div>
<div id="uploadModal" class="modal">
<div class="modal-content">
<h3>Uploading Image...</h3>
<div class="progress-bar">
<div id="uploadProgress" class="progress"></div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>