2024-02-11 11:47:00 -05:00
|
|
|
<!DOCTYPE html>
|
2024-10-05 02:44:15 +05:30
|
|
|
<html th:lang="${#locale.language}" th:dir="#{language.direction}" th:data-language="${#locale.toString()}"
|
|
|
|
xmlns:th="https://www.thymeleaf.org">
|
|
|
|
|
|
|
|
<head>
|
2024-02-16 22:49:06 +01:00
|
|
|
<th:block th:insert="~{fragments/common :: head(title=#{merge.title}, header=#{merge.header})}"></th:block>
|
2024-10-05 02:44:15 +05:30
|
|
|
<link rel="stylesheet" th:href="@{'/css/merge.css'}">
|
|
|
|
</head>
|
2024-02-11 11:47:00 -05:00
|
|
|
|
2024-10-05 02:44:15 +05:30
|
|
|
<body>
|
|
|
|
<div id="page-container">
|
|
|
|
<div id="content-wrap">
|
|
|
|
<th:block th:insert="~{fragments/navbar.html :: navbar}"></th:block>
|
|
|
|
<br><br>
|
|
|
|
<div class="container" id="dropContainer">
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-md-6 bg-card">
|
|
|
|
<div class="tool-header">
|
|
|
|
<span class="material-symbols-rounded tool-header-icon organize">add_to_photos</span>
|
|
|
|
<span class="tool-header-text" th:text="#{merge.header}"></span>
|
2024-02-11 11:47:00 -05:00
|
|
|
</div>
|
2024-10-05 02:44:15 +05:30
|
|
|
<form action="api/v1/general/merge-pdfs" method="post" enctype="multipart/form-data">
|
|
|
|
<div class="mb-3">
|
|
|
|
<label th:text="#{multiPdfDropPrompt}" for="fileInput-input"></label>
|
|
|
|
<div
|
|
|
|
th:replace="~{fragments/common :: fileSelector(name='fileInput', multipleInputsForSingleRequest=true, accept='application/pdf')}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
|
|
<input type="checkbox" name="removeCertSign" id="removeCertSign">
|
|
|
|
<label for="removeCertSign" th:text="#{merge.removeCertSign}">Remove digital signature in the merged
|
|
|
|
file?</label>
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
|
|
<ul id="selectedFiles" class="list-group"></ul>
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
|
|
<button type="button" id="sortByNameBtn" class="btn btn-info" th:text="#{merge.sortByName}"></button>
|
|
|
|
<button type="button" id="sortByDateBtn" class="btn btn-info" th:text="#{merge.sortByDate}"></button>
|
|
|
|
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{merge.submit}"></button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<span id="pageTranslation" th:text="#{page}" style="display:none;"></span>
|
|
|
|
<span id="pagesTranslation" th:text="#{pages}" style="display:none;"></span>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
const pageTranslation = document.getElementById('pageTranslation').innerText; // Get translation for a single page
|
|
|
|
const pagesTranslation = document.getElementById('pagesTranslation').innerText; // Get translation for multiple pages
|
|
|
|
</script>
|
|
|
|
<script type="module">
|
|
|
|
import * as pdfjsLib from '/pdfjs-legacy/pdf.mjs';
|
|
|
|
pdfjsLib.GlobalWorkerOptions.workerSrc = '/pdfjs-legacy/pdf.worker.mjs';
|
|
|
|
</script>
|
|
|
|
<script th:src="@{'/js/merge.js'}"></script>
|
2024-02-16 22:49:06 +01:00
|
|
|
</div>
|
2024-02-11 11:47:00 -05:00
|
|
|
</div>
|
2024-02-16 22:49:06 +01:00
|
|
|
</div>
|
2024-02-11 11:47:00 -05:00
|
|
|
</div>
|
2024-10-05 02:44:15 +05:30
|
|
|
<th:block th:insert="~{fragments/footer.html :: footer}"></th:block>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|