Stirling-PDF/src/main/resources/templates/convert/pdf-to-img.html

45 lines
1.4 KiB
HTML
Raw Normal View History

<!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-02-05 13:54:48 +01:00
<th:block th:insert="~{fragments/common :: head(title=#{pdfToImage})}"></th:block>
2023-02-07 21:14:03 +01:00
<body>
<div id="page-container">
<div id="content-wrap">
2023-02-07 21:14:03 +01:00
<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="#{pdfToImage.header}"></h2>
<form method="post" enctype="multipart/form-data" th:action="@{pdf-to-img}">
<div class="custom-file">
<input type="file" class="custom-file-input" id="fileInput" name="fileInput" required>
<label class="custom-file-label" for="fileInput" th:text="#{pdfPrompt}"></label>
</div>
<div class="form-group">
<label th:text="#{pdfToImage.selectText}"></label> <select class="form-control"
name="imageFormat">
<option value="jpg">JPEG</option>
<option value="png">PNG</option>
<option value="gif">GIF</option>
</select>
2023-02-07 21:14:03 +01:00
</div>
<button type="submit" class="btn btn-primary" th:text="#{pdfToImage.submit}"></button>
</form>
2023-02-07 21:14:03 +01:00
<th:block th:insert="~{fragments/common :: filelist}"></th:block>
</div>
</div>
</div>
2023-02-07 21:14:03 +01:00
</div>
2023-02-07 21:14:03 +01:00
<div th:insert="~{fragments/footer.html :: footer}"></div>
</div>
</body>
</html>