2023-03-20 22:55:11 +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-03-20 22:55:11 +01:00
|
|
|
|
|
|
|
<th:block th:insert="~{fragments/common :: head(title=#{extractImages.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="#{extractImages.header}"></h2>
|
|
|
|
|
|
|
|
<form id="multiPdfForm" th:action="@{extract-images}" method="post" enctype="multipart/form-data">
|
2023-03-25 23:16:26 +01:00
|
|
|
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multiple=false, accept='application/pdf')}"></div>
|
2023-03-20 22:55:11 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<label th:text="#{extractImages.selectText}"></label>
|
|
|
|
<select class="form-control" name="format">
|
|
|
|
<option value="png">PNG</option>
|
|
|
|
<option value="jpg">JPG</option>
|
|
|
|
<option value="gif">GIF</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2023-04-02 12:51:07 +02:00
|
|
|
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{extractImages.submit}"></button>
|
2023-03-20 22:55:11 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div th:insert="~{fragments/footer.html :: footer}"></div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|