Stirling-PDF/src/main/resources/templates/merge-pdfs.html

44 lines
1.1 KiB
HTML
Raw Normal View History

2023-01-27 19:23:40 +01:00
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<th:block th:insert="~{common :: head}"></th:block>
<title>S-PDF MergePDFs</title>
2023-01-28 11:00:32 +01:00
2023-01-27 19:23:40 +01:00
</head>
<body>
<div th:insert="~{navbar.html :: navbar}"></div>
<br>
<br>
2023-01-28 11:00:32 +01:00
<div class="container" id="dropContainer">
2023-01-27 19:23:40 +01:00
<div class="row justify-content-center">
2023-01-28 11:00:32 +01:00
<div class="col-md-6" >
2023-01-27 19:23:40 +01:00
<h2>Merge multiple PDFs (2+)</h2>
<form action="/merge-pdfs" method="post"
enctype="multipart/form-data">
<div class="form-group">
<label>Select (or drag & drop) all PDFs to merge</label>
<div class="custom-file">
<input type="file" class="custom-file-input" id="fileInput"
name="fileInput" multiple> <label
class="custom-file-label">Choose PDFs</label>
</div>
</div>
<div class="form-group text-center">
<button type="submit" class="btn btn-primary">Merge</button>
</div>
</form>
<th:block th:insert="~{common :: filelist}"></th:block>
</div>
</div>
</div>
<div th:insert="~{footer.html :: footer}"></div>
</body>
</html>