-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 1.21 KB
/
index.html
File metadata and controls
37 lines (33 loc) · 1.21 KB
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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self'">
<title>제품 찾는중...</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="loading-container">
<div class="loading-content">
<div class="emoji-icon">🔍</div>
<h2 id="status-title">제품을 찾는중...</h2>
<p id="status-message">잠시만 기다려주세요...</p>
<div class="progress">
<div class="progress-bar" id="progress-bar"></div>
</div>
</div>
<div id="error-panel" class="error-panel hidden">
<p class="error-message" id="error-message">
Server not found
</p>
<button id="retry-btn" class="btn-retry">Retry Scan</button>
</div>
<div class="network-info">
<span id="network-status"></span>
</div>
</div>
</div>
<script src="renderer.js"></script>
</body>
</html>