b7832c941d
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
48 lines
1.4 KiB
HTML
48 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="popup.css" />
|
|
<title>FabledCurator</title>
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<span class="brand">FabledCurator</span>
|
|
<span id="connection-status" class="dot" title="checking…"></span>
|
|
</header>
|
|
|
|
<section id="setup-required" class="setup hidden">
|
|
<div class="alert">
|
|
<strong>Setup required</strong>
|
|
<p>Configure the FC URL and extension API key.</p>
|
|
</div>
|
|
<button id="open-settings-btn" class="btn primary">Open settings</button>
|
|
</section>
|
|
|
|
<section id="main-content" class="main hidden">
|
|
<nav class="tabs">
|
|
<button class="tab active" data-tab="platforms">Platforms</button>
|
|
<button class="tab" data-tab="sources">Sources</button>
|
|
</nav>
|
|
|
|
<div id="tab-platforms" class="tab-panel">
|
|
<div id="platforms-list"></div>
|
|
<button id="export-all-btn" class="btn primary block">Export all platforms</button>
|
|
</div>
|
|
|
|
<div id="tab-sources" class="tab-panel hidden">
|
|
<div id="sources-list"></div>
|
|
</div>
|
|
|
|
<div id="status-message" class="status-message hidden"></div>
|
|
|
|
<footer class="footer">
|
|
<button id="settings-btn" class="btn link">Settings</button>
|
|
</footer>
|
|
</section>
|
|
|
|
<script src="../lib/platforms.js"></script>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|