2023-01-29 18:06:53 +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">
|
2023-01-29 18:06:53 +01:00
|
|
|
|
|
|
|
|
2024-01-02 00:37:20 +01:00
|
|
|
<th:block th:insert="~{fragments/common :: head(title=#{compress.title}, header=#{compress.header})}"></th:block>
|
2023-02-03 21:26:35 +01:00
|
|
|
|
|
|
|
|
2023-02-11 15:27:15 +01:00
|
|
|
<body>
|
2023-05-03 23:07:51 +02:00
|
|
|
<th:block th:insert="~{fragments/common :: game}"></th:block>
|
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>
|
2023-05-20 23:48:59 +02:00
|
|
|
<div class="container">
|
2023-02-11 15:27:15 +01:00
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h2 th:text="#{compress.header}"></h2>
|
2023-09-12 00:19:50 +02:00
|
|
|
<form action="#" th:action="@{api/v1/misc/compress-pdf}" method="post" enctype="multipart/form-data">
|
2023-05-19 21:43:30 +02:00
|
|
|
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multiple=false, accept='application/pdf')}"></div>
|
2023-05-20 00:58:54 +02:00
|
|
|
<div class="card mb-3">
|
|
|
|
<div class="card-body">
|
2023-05-20 23:48:59 +02:00
|
|
|
<h4 th:text="#{compress.selectText.1}"></h4>
|
|
|
|
<label for="optimizeLevel" th:text="#{compress.selectText.2}"></label>
|
2023-05-20 00:58:54 +02:00
|
|
|
<select name="optimizeLevel" id="optimizeLevel" class="form-control">
|
|
|
|
<option value="1">1</option>
|
|
|
|
<option value="2" selected>2</option>
|
|
|
|
<option value="3">3</option>
|
2023-05-20 23:48:59 +02:00
|
|
|
<option value="4" th:text="#{compress.selectText.3}"></option>
|
2023-05-20 00:58:54 +02:00
|
|
|
</select>
|
|
|
|
</div>
|
2023-05-19 21:43:30 +02:00
|
|
|
</div>
|
2024-02-11 17:47:00 +01:00
|
|
|
|
2023-05-20 00:58:54 +02:00
|
|
|
<div class="card mb-3">
|
|
|
|
<div class="card-body">
|
2023-05-20 23:48:59 +02:00
|
|
|
<h4 th:text="#{compress.selectText.4}"></h4>
|
|
|
|
<label for="expectedOutputSize" th:text="#{compress.selectText.5}"></label>
|
2023-05-20 00:58:54 +02:00
|
|
|
<input type="text" name="expectedOutputSize" id="expectedOutputSize" min="1" class="form-control">
|
|
|
|
</div>
|
2023-05-19 21:43:30 +02:00
|
|
|
</div>
|
|
|
|
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{compress.submit}"></button>
|
|
|
|
</form>
|
2023-02-11 15:27:15 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div th:insert="~{fragments/footer.html :: footer}"></div>
|
|
|
|
</div>
|
2023-01-29 18:06:53 +01:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|