Scanyonero/static/index.html
David Vogel 853a1bb58d Rework into FTP scanning server
- Rename to Scanyonero
- Add FTP server that ingests TIFF, PNG, JPEG or PDF files
- Add web interface to check and modify ingested files
- Rework how ocrmypdf is invoked

Basics are working, but the program is not in a usable state.
2025-05-14 12:08:38 +02:00

25 lines
626 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scanyonero</title>
<link rel="stylesheet" href="styles.css">
<script type="module" src="./js/components/document-menu.js"></script>
<script type="module" src="./js/components/document-queue.js"></script>
</head>
<body>
<div id="main-container">
<document-menu id="document-menu"></document-menu>
<document-queue id="document-queue"></document-queue>
</div>
<script type="module">
import { App } from "./js/app.js";
const app = new App();
</script>
</body>
</html>