1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-09-21 12:20:13 +02:00
Stirling-PDF/src/main/resources/templates/split-pdfs.html

51 lines
1.6 KiB
HTML
Raw Normal View History

2023-01-27 19:23:40 +01:00
<!DOCTYPE html>
2023-02-06 12:19:31 +01:00
<html th:lang="${#locale.language}" xmlns:th="http://www.thymeleaf.org">
2023-02-05 13:54:48 +01:00
<th:block th:insert="~{fragments/common :: head(title=#{split.title})}"></th:block>
2023-01-27 19:23:40 +01:00
<body>
<div id="page-container">
<div id="content-wrap">
<div th:insert="~{fragments/navbar.html :: navbar}"></div>
2023-01-27 19:23:40 +01:00
<br>
<br>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6">
2023-02-05 13:54:48 +01:00
<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>
2023-01-27 19:23:40 +01:00
<form th:action="@{split-pages}" method="post"
2023-01-27 19:23:40 +01:00
enctype="multipart/form-data">
<div class="custom-file">
<input type="file" class="custom-file-input" id="fileInput"
name="fileInput" required> <label
2023-02-05 13:54:48 +01:00
class="custom-file-label" for="fileInput" th:text="#{pdfPrompt}"></label>
2023-01-27 19:23:40 +01:00
</div>
<div class="form-group">
2023-02-05 13:54:48 +01:00
<label for="pages" th:text="#{split.splitPages}"></label> <input
2023-01-27 19:23:40 +01:00
type="text" class="form-control" id="pages" name="pages"
placeholder="1,3,5-10" required>
2023-01-27 19:23:40 +01:00
</div>
<br>
2023-02-05 13:54:48 +01:00
<button type="submit" class="btn btn-primary" th:text="#{split.submit}"></button>
2023-01-27 19:23:40 +01:00
</form>
<th:block th:insert="~{fragments/common :: filelist}"></th:block>
2023-01-27 19:23:40 +01:00
</div>
</div>
</div>
</div>
<div th:insert="~{fragments/footer.html :: footer}"></div>
</div>
2023-01-27 19:23:40 +01:00
</body>
</html>