2023-01-27 19:23:40 +01:00
|
|
|
<!DOCTYPE html>
|
2023-04-03 00:59:22 +02:00
|
|
|
<html th:lang="${#locale.toString()}" th:lang-direction="#{language.direction}" xmlns:th="http://www.thymeleaf.org">
|
2024-02-11 17:47:00 +01:00
|
|
|
|
2024-01-02 00:37:20 +01:00
|
|
|
<th:block th:insert="~{fragments/common :: head(title=#{split.title}, header=#{split.header})}"></th:block>
|
2024-02-11 17:47:00 +01:00
|
|
|
|
|
|
|
|
2023-01-27 19:23:40 +01:00
|
|
|
<body>
|
2024-02-11 17:47:00 +01:00
|
|
|
|
2023-02-11 15:27:15 +01:00
|
|
|
<div id="page-container">
|
|
|
|
<div id="content-wrap">
|
|
|
|
<div th:insert="~{fragments/navbar.html :: navbar}"></div>
|
|
|
|
<br> <br>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h1 th:text="#{split.header}"></h1>
|
|
|
|
<p th:text="#{split.desc.1}"></p>
|
|
|
|
<p th:text="#{split.desc.2}"></p>
|
|
|
|
<p th:text="#{split.desc.3}"></p>
|
|
|
|
<p th:text="#{split.desc.4}"></p>
|
|
|
|
<p th:text="#{split.desc.5}"></p>
|
|
|
|
<p th:text="#{split.desc.6}"></p>
|
|
|
|
<p th:text="#{split.desc.7}"></p>
|
|
|
|
<p th:text="#{split.desc.8}"></p>
|
2024-02-11 17:47:00 +01:00
|
|
|
|
2023-09-12 00:19:50 +02:00
|
|
|
<form th:action="@{api/v1/general/split-pages}" method="post" enctype="multipart/form-data">
|
2023-03-25 23:16:26 +01:00
|
|
|
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multiple=false, accept='application/pdf')}"></div>
|
2024-02-11 17:47:00 +01:00
|
|
|
|
2023-08-20 22:57:19 +02:00
|
|
|
<div class="mb-3">
|
2023-02-11 15:27:15 +01:00
|
|
|
<label for="pages" th:text="#{split.splitPages}"></label>
|
2023-09-12 01:42:22 +02:00
|
|
|
<input type="text" class="form-control" id="pageNumbers" name="pageNumbers" placeholder="1,3,5-10" required>
|
2023-02-11 15:27:15 +01:00
|
|
|
</div>
|
|
|
|
<br>
|
2023-04-02 12:51:07 +02:00
|
|
|
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{split.submit}"></button>
|
2023-02-11 15:27:15 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div th:insert="~{fragments/footer.html :: footer}"></div>
|
|
|
|
</div>
|
2023-01-27 19:23:40 +01:00
|
|
|
</body>
|
2024-02-11 18:14:21 +01:00
|
|
|
</html>
|