Files
Stirling-PDF/src/main/resources/templates/misc/extract-images.html
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.6 KiB
HTML
Raw Normal View History

2023-03-20 21:55:11 +00:00
<!DOCTYPE html>
2024-02-17 20:56:56 +01:00
<html th:lang="${#locale.language}" th:lang-direction="#{language.direction}" th:language="${#locale.toString()}" xmlns:th="http://www.thymeleaf.org">
2024-02-16 22:49:06 +01:00
<head>
<th:block th:insert="~{fragments/common :: head(title=#{extractImages.title}, header=#{extractImages.header})}"></th:block>
</head>
2023-03-20 21:55:11 +00:00
2024-02-16 22:49:06 +01:00
<body>
2024-02-18 08:40:30 +01:00
<th:block th:insert="~{fragments/common :: game}"></th:block>
2024-02-16 22:49:06 +01:00
<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">
<div class="col-md-6">
<h2 th:text="#{extractImages.header}"></h2>
<form id="multiPdfForm" th:action="@{api/v1/misc/extract-images}" method="post" enctype="multipart/form-data">
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multiple=false, accept='application/pdf')}"></div>
<div class="mb-3">
<label th:text="#{extractImages.selectText}"></label>
<select class="form-control" name="format">
2023-03-20 21:55:11 +00:00
<option value="png">PNG</option>
<option value="jpg">JPG</option>
<option value="gif">GIF</option>
2024-02-16 22:49:06 +01:00
</select>
</div>
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{extractImages.submit}"></button>
</form>
2023-03-20 21:55:11 +00:00
</div>
</div>
</div>
</div>
2024-02-16 22:49:06 +01:00
<th:block th:insert="~{fragments/footer.html :: footer}"></th:block>
2023-03-20 21:55:11 +00:00
</div>
2024-02-16 22:49:06 +01:00
</body>
2023-03-20 21:55:11 +00:00
</html>