forked from Stirling-Tools/Stirling-PDF
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
starting issue, implementing pdf-to-csv view
- Loading branch information
1 parent
18c5f5b
commit d6afb07
Showing
7 changed files
with
304 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html th:lang="${#locale.toString()}" th:lang-direction="#{language.direction}" xmlns:th="http://www.thymeleaf.org"> | ||
|
||
<th:block th:insert="~{fragments/common :: head(title=#{PDFToXML.title})}"></th:block> | ||
<body> | ||
<th:block th:insert="~{fragments/common :: game}"></th:block> | ||
<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="#{PDFToCSV.header}"></h2> | ||
<form method="post" enctype="multipart/form-data" th:action="@{api/v1/convert/pdf/csv}"> | ||
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multiple=false, accept='application/pdf')}"></div> | ||
<br> | ||
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{PDFToCSV.submit}"></button> | ||
|
||
</form> | ||
<p class="mt-3" th:text="#{PDFToCSV.credit}"></p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div th:insert="~{fragments/footer.html :: footer}"></div> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.