2023-05-27 14:23:25 +01:00
|
|
|
<!DOCTYPE html>
|
2024-05-22 21:48:23 +01:00
|
|
|
<html th:lang="${#locale.language}" th:dir="#{language.direction}" th:data-language="${#locale.toString()}" xmlns:th="https://www.thymeleaf.org">
|
2024-02-16 22:49:06 +01:00
|
|
|
<head>
|
|
|
|
<th:block th:insert="~{fragments/common :: head(title=#{pageLayout.title}, header=#{pageLayout.header})}"></th:block>
|
|
|
|
</head>
|
2023-05-27 14:23:25 +01:00
|
|
|
|
2024-02-16 22:49:06 +01:00
|
|
|
<body>
|
2023-05-27 14:23:25 +01:00
|
|
|
<div id="page-container">
|
2024-02-16 22:49:06 +01:00
|
|
|
<div id="content-wrap">
|
|
|
|
<th:block th:insert="~{fragments/navbar.html :: navbar}"></th:block>
|
2024-03-21 21:58:01 +01:00
|
|
|
<br><br>
|
2024-02-16 22:49:06 +01:00
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-center">
|
2024-05-19 12:44:54 +02:00
|
|
|
<div class="col-md-6 bg-card">
|
2024-05-05 15:19:53 +04:00
|
|
|
<div class="tool-header">
|
|
|
|
<span class="material-symbols-rounded tool-header-icon organize">dashboard</span>
|
|
|
|
<span class="tool-header-text" th:text="#{pageLayout.header}"></span>
|
|
|
|
</div>
|
2024-06-15 23:07:09 +02:00
|
|
|
<form id="multiPdfForm" th:action="@{'/api/v1/general/multi-page-layout'}" method="post" enctype="multipart/form-data">
|
2024-08-23 10:17:50 +02:00
|
|
|
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multipleInputsForSingleRequest=false, accept='application/pdf')}"></div>
|
2024-02-16 22:49:06 +01:00
|
|
|
<div class="mb-3">
|
|
|
|
<label for="pagesPerSheet" th:text="#{pageLayout.pagesPerSheet}"></label>
|
2024-05-05 15:19:53 +04:00
|
|
|
<select class="form-control" id="pagesPerSheet" name="pagesPerSheet">
|
2024-03-21 21:58:01 +01:00
|
|
|
<option value="2">2</option>
|
|
|
|
<option value="3">3</option>
|
|
|
|
<option value="4">4</option>
|
|
|
|
<option value="9">9</option>
|
|
|
|
<option value="16">16</option>
|
2024-02-16 22:49:06 +01:00
|
|
|
</select>
|
2023-05-27 14:23:25 +01:00
|
|
|
</div>
|
2024-05-05 15:19:53 +04:00
|
|
|
<div class="form-check mb-3">
|
|
|
|
<input type="checkbox" id="addBorder" name="addBorder">
|
|
|
|
<label for="addBorder" th:text="#{pageLayout.addBorder}"></label>
|
2024-02-16 22:49:06 +01:00
|
|
|
</div>
|
|
|
|
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{pageLayout.submit}"></button>
|
|
|
|
</form>
|
2023-05-27 14:23:25 +01:00
|
|
|
</div>
|
2024-02-16 22:49:06 +01:00
|
|
|
</div>
|
2023-05-27 14:23:25 +01:00
|
|
|
</div>
|
2024-02-16 22:49:06 +01:00
|
|
|
</div>
|
|
|
|
<th:block th:insert="~{fragments/footer.html :: footer}"></th:block>
|
2023-05-27 14:23:25 +01:00
|
|
|
</div>
|
2024-02-16 22:49:06 +01:00
|
|
|
</body>
|
2023-05-27 14:23:25 +01:00
|
|
|
</html>
|