Stirling-PDF/src/main/resources/templates/other/remove-blanks.html

40 lines
1.8 KiB
HTML
Raw Normal View History

2023-05-08 13:18:48 +02:00
<!DOCTYPE html>
<html th:lang="${#locale.toString()}" th:lang-direction="#{language.direction}" xmlns:th="http://www.thymeleaf.org">
<th:block th:insert="~{fragments/common :: head(title=#{removeBlanks.title})}"></th:block>
<body>
<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">
<h2 th:text="#{removeBlanks.header}"></h2>
<form id="multiPdfForm" th:action="@{remove-blanks}" method="post" enctype="multipart/form-data">
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multiple=false, accept='application/pdf')}"></div>
2023-05-12 00:05:33 +02:00
<div class="form-group">
2023-05-12 15:02:37 +02:00
<label for="threshold" th:text="#{removeBlanks.threshold}"></label>
2023-05-12 00:05:33 +02:00
<input type="number" class="form-control" id="threshold" name="threshold" value="10">
2023-05-12 15:02:37 +02:00
<small id="thresholdHelp" class="form-text text-muted" th:text="#{removeBlanks.thresholdDesc}"></small>
2023-05-12 00:05:33 +02:00
</div>
<div class="form-group">
2023-05-12 15:02:37 +02:00
<label for="whitePercent" th:text="#{removeBlanks.whitePercent}"></label>
2023-05-12 00:05:33 +02:00
<input type="number" class="form-control" id="whitePercent" name="whitePercent" value="99">
2023-05-12 15:02:37 +02:00
<small id="whitePercentHelp" class="form-text text-muted" th:text="#{removeBlanks.whitePercentDesc}"></small>
2023-05-12 00:05:33 +02:00
</div>
2023-05-08 13:18:48 +02:00
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{removeBlanks.submit}"></button>
</form>
</div>
</div>
</div>
</div>
<div th:insert="~{fragments/footer.html :: footer}"></div>
</div>
</body>
2023-05-12 15:02:37 +02:00
</html>