20 lines
546 B
HTML
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> |