forked from VeritAI-Company/VeritAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
54 lines (46 loc) · 2.64 KB
/
Copy pathpopup.html
File metadata and controls
54 lines (46 loc) · 2.64 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>VeritAI</title>
<style>
body { width: 260px; padding: 20px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; text-align: center; background-color: #121212; color: #f1f1f1; margin: 0; }
h3 { margin-top: 0; margin-bottom: 20px; color: #4facfe; font-size: 18px; letter-spacing: -0.5px; }
.toggle-container { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding: 12px; background: #1e1e1e; border-radius: 10px; }
.toggle-label { font-size: 13px; font-weight: 600; color: #ddd; }
.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #444; transition: .3s; border-radius: 24px; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .3s; border-radius: 50%; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }
input:checked + .slider { background-color: #4facfe; }
input:checked + .slider:before { transform: translateX(20px); }
#status-text { font-size: 13px; color: #888; margin-top: 15px; font-weight: 600; }
.report-section { margin-top: 20px; padding-top: 15px; border-top: 1px solid #333; text-align: left; }
.report-link { display: block; text-align: center; padding: 8px; font-size: 12px; color: #aaa; text-decoration: none; border: 1px solid #444; border-radius: 6px; margin-top: 10px; transition: 0.2s; cursor: pointer; background: transparent; width: 100%; box-sizing: border-box; }
.report-link:hover { background: #333; color: white; border-color: #555; }
</style>
</head>
<body>
<h3>VeritAI 실시간 탐지</h3>
<div class="toggle-container">
<span class="toggle-label">시스템 전원</span>
<label class="switch">
<input type="checkbox" id="system-toggle">
<span class="slider"></span>
</label>
</div>
<div class="toggle-container">
<span class="toggle-label">자동 스캔 모드</span>
<label class="switch">
<input type="checkbox" id="auto-toggle">
<span class="slider"></span>
</label>
</div>
<p id="status-text">설정 로딩 중...</p>
<div class="report-section">
<div style="font-size: 11px; color: #777; text-align: center; margin-bottom: 8px;">V 1.1 (엔진: v1)</div>
<button id="feedback-link" class="report-link">💡 서비스 건의 및 버그 제보</button>
</div>
<script src="popup.js"></script>
</body>
</html>