pdf-web-toolkit/templates/index.html

20 lines
664 B
HTML
Raw Normal View History

2023-10-11 17:51:35 +00:00
<!DOCTYPE html>
<html>
<head>
2023-12-22 14:27:56 +00:00
<title>PDF Web Toolkit</title>
2023-10-11 17:51:35 +00:00
<link rel="shortcut icon" href="/static/icons/filetype-pdf.svg" type="image/x-icon">
2023-12-06 21:26:14 +00:00
<script src="/static/js/api_handler.js"></script>
2023-10-11 17:51:35 +00:00
</head>
<body>
<h1>PDF Splitter</h1>
2023-12-06 21:26:14 +00:00
<input type="file" id="split_pdfFile" accept=".pdf"><br>
<button onclick="uploadPDF_split()">Split PDF into individual pages</button>
2023-10-11 17:51:35 +00:00
2023-12-06 21:26:14 +00:00
<h1>PDF Merger</h1>
<input type="file" id="merge_pdfFile_1" accept=".pdf"><br>
<input type="file" id="merge_pdfFile_2" accept=".pdf"><br>
<button onclick="uploadPDF_merge()">Merge the two selected PDFs</button>
<div id="output"></div>
2023-10-11 17:51:35 +00:00
</body>
</html>