node based backend

This commit is contained in:
Felix Kaspar
2023-10-17 01:31:00 +02:00
parent 542d74b9cc
commit 76e37354e1
4 changed files with 313 additions and 10 deletions

View File

@@ -12,6 +12,19 @@
</head>
<body>
<input type="file" id="pdfFile" accept=".pdf">
<a id="downloadLink" style="display: none;" download="modified.pdf">Download Modified PDF</a>
<ul id="operations">
</ul>
<select id="pdfOptions">
<option value="scaleContent">Scale Content</option>
<option value="changePageSize">Change Page Size</option>
<option value="mergePDFs">Merge PDFs</option>
<option value="splitPDFs">Split PDFs</option>
</select>
<button id="addButton">Add</button>
<button id="doneButton">Done</button>
</body>
</html>