2023-03-20 21:55:11 +00:00
|
|
|
<!DOCTYPE html>
|
2023-04-02 23:59:22 +01:00
|
|
|
<html th:lang="${#locale.toString()}" th:lang-direction="#{language.direction}" xmlns:th="http://www.thymeleaf.org">
|
2023-03-20 21:55:11 +00:00
|
|
|
|
2024-01-02 02:37:20 +03:00
|
|
|
<th:block th:insert="~{fragments/common :: head(title=#{fileToPDF.title}, header=#{fileToPDF.header})}"></th:block>
|
2023-03-20 21:55:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
<body>
|
2023-05-04 00:07:51 +03:00
|
|
|
<th:block th:insert="~{fragments/common :: game}"></th:block>
|
2023-03-20 21:55:11 +00:00
|
|
|
<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="#{fileToPDF.header}"></h2>
|
|
|
|
<p th:text="#{processTimeWarning}">
|
2023-09-11 23:19:50 +01:00
|
|
|
<form method="post" enctype="multipart/form-data" th:action="@{api/v1/convert/file/pdf}">
|
2023-03-20 21:55:11 +00:00
|
|
|
<div th:replace="~{fragments/common :: fileSelector(name='fileInput', multiple=false)}"></div>
|
|
|
|
<br>
|
2023-04-02 11:51:07 +01:00
|
|
|
<button type="submit" id="submitBtn" class="btn btn-primary" th:text="#{fileToPDF.submit}"></button>
|
2023-03-20 21:55:11 +00:00
|
|
|
|
|
|
|
</form>
|
|
|
|
<p class="mt-3" th:text="#{fileToPDF.credit}"></p>
|
|
|
|
<p class="mt-3" th:text="#{fileToPDF.supportedFileTypes}"></p>
|
|
|
|
<p th:utext="#{fileToPDF.fileTypesList}"></p>
|
|
|
|
<a href="https://help.libreoffice.org/latest/en-US/text/shared/guide/supported_formats.html">https://help.libreoffice.org/latest/en-US/text/shared/guide/supported_formats.html</a>
|
2024-02-11 11:47:00 -05:00
|
|
|
|
2023-03-20 21:55:11 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div th:insert="~{fragments/footer.html :: footer}"></div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|