Map keys 0–9 to destinations, inspect files before deciding, and preview PDF/RAW/ZIP/video with an OLED dark UI polish plus demo seed and tests.
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>SwipeAnything — Settings</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&family=IBM+Plex+Mono:wght@400;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<header>
|
|
<h1>Settings</h1>
|
|
<div class="header-actions">
|
|
<a class="icon-link" href="index.html">Back</a>
|
|
</div>
|
|
</header>
|
|
<div class="source-label">Choose what to swipe through, and how.</div>
|
|
<fieldset class="adapter-fieldset">
|
|
<legend class="sr-only">Adapter</legend>
|
|
<div id="adapterList"></div>
|
|
</fieldset>
|
|
<form id="settingsForm"></form>
|
|
<div class="settings-error" id="settingsError" role="alert" aria-live="assertive"></div>
|
|
</div>
|
|
<script src="settings.js"></script>
|
|
</body>
|
|
</html>
|