2024-02-11 17:47:00 +01:00
|
|
|
<!DOCTYPE html>
|
2024-03-21 21:58:01 +01:00
|
|
|
<html th:lang="${#locale.language}" th:dir="#{language.direction}" th:data-language="${#locale.toString()}" xmlns:th="http://www.thymeleaf.org">
|
2024-02-16 22:49:06 +01:00
|
|
|
<head>
|
|
|
|
<th:block th:insert="~{fragments/common :: head(title=#{split.title}, header=#{split.header})}"></th:block>
|
|
|
|
</head>
|
2024-02-11 17:47:00 +01:00
|
|
|
|
2024-02-16 22:49:06 +01:00
|
|
|
<body>
|
2024-02-11 17:47:00 +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">
|
|
|
|
<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
|
|
|
|
2024-02-16 22:49:06 +01:00
|
|
|
<form th:action="@{api/v1/general/split-pages}" method="post" enctype="multipart/form-data">
|
|
|
|
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multiple=false, accept='application/pdf')}"></div>
|
2024-02-11 17:47:00 +01:00
|
|
|
|
2024-02-16 22:49:06 +01:00
|
|
|
<div class="mb-3">
|
2024-03-21 21:58:01 +01:00
|
|
|
<label for="pageNumbers" th:text="#{split.splitPages}"></label>
|
2024-02-16 22:49:06 +01:00
|
|
|
<input type="text" class="form-control" id="pageNumbers" name="pageNumbers" placeholder="1,3,5-10" required>
|
2024-02-11 17:47:00 +01:00
|
|
|
</div>
|
2024-02-16 22:49:06 +01:00
|
|
|
<br>
|
|
|
|
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{split.submit}"></button>
|
|
|
|
</form>
|
2024-02-11 17:47:00 +01:00
|
|
|
</div>
|
2024-02-16 22:49:06 +01:00
|
|
|
</div>
|
2024-02-11 17:47:00 +01:00
|
|
|
</div>
|
2024-02-16 22:49:06 +01:00
|
|
|
</div>
|
|
|
|
<th:block th:insert="~{fragments/footer.html :: footer}"></th:block>
|
2024-02-11 17:47:00 +01:00
|
|
|
</div>
|
2024-02-16 22:49:06 +01:00
|
|
|
</body>
|
2024-03-21 21:58:01 +01:00
|
|
|
</html>
|