Stirling-PDF/src/main/resources/templates/pdf-organizer.html

40 lines
1.4 KiB
HTML
Raw Normal View History

2023-01-27 19:23:40 +01:00
<!DOCTYPE html>
2023-02-07 21:14:03 +01:00
<html th:lang="${#locale.language}" th:lang-direction="#{language.direction}" xmlns:th="http://www.thymeleaf.org">
2023-01-27 19:23:40 +01:00
2023-02-05 13:54:48 +01:00
<th:block th:insert="~{fragments/common :: head(title=#{pdfOrganiser.title})}"></th:block>
<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
<h2 th:text="#{pdfOrganiser.header}"></h2>
<form th:action="@{rearrange-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="pageOrder" th:text="#{pageOrderPrompt}"></label> <input type="text" class="form-control"
2023-01-27 19:23:40 +01:00
id="fileInput" name="pageOrder"
placeholder="(e.g. 1,3,2 or 4-8,2,10-12)" required>
</div>
2023-02-05 13:54:48 +01:00
<button type="submit" class="btn btn-primary" th:text="#{pdfOrganiser.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>