Node/Express backend with a pluggable Adapter contract, a folder adapter (safe non-destructive reject-to-trash, undo, keep/reject/skip), and a vanilla JS swipe UI + generic settings form driven by each adapter's configSchema.
25 lines
647 B
HTML
25 lines
647 B
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="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>
|
|
<div id="adapterList"></div>
|
|
<form id="settingsForm"></form>
|
|
<div class="settings-error" id="settingsError"></div>
|
|
</div>
|
|
<script src="settings.js"></script>
|
|
</body>
|
|
</html>
|