mirror of
https://github.com/Dadido3/Scanyonero.git
synced 2025-06-06 01:10:00 +00:00
- 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.
25 lines
626 B
HTML
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> |