-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 843 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DataConsole</title>
<link rel="stylesheet" href="/style.css" />
<!-- Load Plotly.js directly from CDN -->
<script src="https://cdn.plot.ly/plotly-2.27.0.min.js"></script>
</head>
<body>
<header id="topbar">
<h1>DataConsole</h1>
<div class="controls">
<button id="themeToggle" title="Toggle light/dark theme">🌗 Theme</button>
<button id="saveReport" title="Save current state as HTML">💾 Save Report</button>
<button id="clearConsole" title="Clear console">🗑️ Clear</button>
</div>
</header>
<div id="console"></div>
<script type="module" src="/index.js"></script>
</body>
</html>