-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>threatMap</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/core.css">
</head>
<body>
<div class="progress-bar"></div>
<div class="app-container">
<div class="narrative-area">
<div class="accounts-container">
<div class="account-list"></div>
</div>
<div class="narrative-text"></div>
<div class="credit">
<a href="https://github.com/ashfelloff" target="_blank" rel="noopener">by ashfelloff</a>
</div>
<div class="security-levels-grid"></div>
<div class="security-analysis" style="display: none;">
<div class="account-map"></div>
<div class="security-score"></div>
<div class="ai-helper">
<p>Want your favorite AI to explain?</p>
<button class="copy-prompt-btn">Copy Analysis to Clipboard</button>
</div>
<div class="export-section">
<button class="export-btn">Export Results</button>
</div>
</div>
</div>
<div class="input-container">
<div class="input-bar">
<input type="text" id="mainInput" placeholder="Type Yes to continue">
</div>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>