mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-01-10 00:06:51 +01:00
eda838d6f8
* feat: translate zh_cn properties * feat: adjust some description messages_zh_CN.properties * feat: translate zh_TW file done * feat: zh_CN semantic optimization * feat: Supplementary ja_JP translation * feat: extract rest text * feat: Sync to all lang.properties * feat: translate zh_CN, zh_TW, ja_JP file * fix: small bug --------- Co-authored-by: yanyu_lin <yanyu_lin@bestsign.cn>
37 lines
1.6 KiB
HTML
37 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html th:lang="${#locale.language}" th:dir="#{language.direction}" th:data-language="${#locale.toString()}" xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<th:block th:insert="~{fragments/common :: head(title=#{pageRemover.title}, header=#{pageRemover.header})}"></th:block>
|
|
</head>
|
|
|
|
<body>
|
|
<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="#{pageRemover.header}"></h2>
|
|
|
|
<form th:action="@{api/v1/general/remove-pages}" 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 for="fileInput" th:text="#{pageRemover.pagesToDelete}"></label>
|
|
<input type="text" class="form-control" id="fileInput" name="pageNumbers" th:placeholder="#{pageRemover.placeholder}" required>
|
|
</div>
|
|
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{pageRemover.submit}"></button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<th:block th:insert="~{fragments/footer.html :: footer}"></th:block>
|
|
</div>
|
|
<script>
|
|
document.getElementById('fileInput').addEventListener('input', function(){
|
|
this.value =this.value.replace(/\s+/g, '');;
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |