Files
jav-play/entrypoints/popup/index.html
asimov 0de2d786f0 init
2025-05-27 15:23:51 +12:00

20 lines
546 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Settings</title>
</head>
<body>
<div id="app">
<div class="setting-row">
<label for="feature-toggle">Feature Enabled</label>
<label class="switch">
<input type="checkbox" id="feature-toggle">
<span class="slider round"></span>
</label>
</div>
</div>
<script type="module" src="./main.ts"></script>
</body>
</html>