2023-01-29 17:06:53 +00:00
|
|
|
<!DOCTYPE html>
|
2024-05-05 15:19:53 +04:00
|
|
|
<html th:lang="${#locale.language}" th:dir="#{language.direction}" th:data-language="${#locale.toString()}"
|
2024-05-22 21:48:23 +01:00
|
|
|
xmlns:th="https://www.thymeleaf.org">
|
2024-05-05 15:19:53 +04:00
|
|
|
|
|
|
|
<head>
|
2024-02-16 22:49:06 +01:00
|
|
|
<th:block th:insert="~{fragments/common :: head(title=#{compress.title}, header=#{compress.header})}"></th:block>
|
2024-05-05 15:19:53 +04:00
|
|
|
</head>
|
2023-01-29 17:06:53 +00:00
|
|
|
|
2024-05-05 15:19:53 +04:00
|
|
|
<body>
|
|
|
|
<th:block th:insert="~{fragments/common :: game}"></th:block>
|
|
|
|
<div id="page-container">
|
|
|
|
<div id="content-wrap">
|
|
|
|
<th:block th:insert="~{fragments/navbar.html :: navbar}"></th:block>
|
|
|
|
<br><br>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-center">
|
2024-05-19 12:44:54 +02:00
|
|
|
<div class="col-md-6 bg-card">
|
2024-05-05 15:19:53 +04:00
|
|
|
<div class="tool-header">
|
|
|
|
<span class="material-symbols-rounded tool-header-icon advance">zoom_in_map</span>
|
|
|
|
<span class="tool-header-text" th:text="#{compress.header}"></span>
|
|
|
|
</div>
|
2024-06-15 23:07:09 +02:00
|
|
|
<form action="#" th:action="@{'/api/v1/misc/compress-pdf'}" method="post" enctype="multipart/form-data">
|
2024-05-05 15:19:53 +04:00
|
|
|
<div
|
|
|
|
th:replace="~{fragments/common :: fileSelector(name='fileInput', multiple=false, accept='application/pdf')}">
|
|
|
|
</div>
|
|
|
|
<div class="card mb-3">
|
|
|
|
<div class="card-body">
|
|
|
|
<h4 th:text="#{compress.selectText.1}"></h4>
|
|
|
|
<label for="optimizeLevel" th:text="#{compress.selectText.2}"></label>
|
|
|
|
<select name="optimizeLevel" id="optimizeLevel" class="form-control">
|
|
|
|
<option value="1">1</option>
|
|
|
|
<option value="2" selected>2</option>
|
|
|
|
<option value="3">3</option>
|
|
|
|
<option value="4" th:text="#{compress.selectText.3}"></option>
|
|
|
|
</select>
|
2023-02-11 14:27:15 +00:00
|
|
|
</div>
|
2024-05-05 15:19:53 +04:00
|
|
|
</div>
|
|
|
|
<div class="card mb-3">
|
|
|
|
<div class="card-body">
|
|
|
|
<h4 th:text="#{compress.selectText.4}"></h4>
|
|
|
|
<label for="expectedOutputSize" th:text="#{compress.selectText.5}"></label>
|
|
|
|
<input type="text" name="expectedOutputSize" id="expectedOutputSize" class="form-control">
|
2024-02-16 22:49:06 +01:00
|
|
|
</div>
|
2024-05-05 15:19:53 +04:00
|
|
|
</div>
|
|
|
|
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{compress.submit}"></button>
|
|
|
|
</form>
|
2024-02-16 22:49:06 +01:00
|
|
|
</div>
|
2023-02-11 14:27:15 +00:00
|
|
|
</div>
|
2024-02-16 22:49:06 +01:00
|
|
|
</div>
|
2023-02-11 14:27:15 +00:00
|
|
|
</div>
|
2024-05-05 15:19:53 +04:00
|
|
|
<th:block th:insert="~{fragments/footer.html :: footer}"></th:block>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
2023-01-29 17:06:53 +00:00
|
|
|
</html>
|