uploadStatus.html 252 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <body>
  4. <h1>Spring Boot - Upload Status</h1>
  5. <div th:if="${message}">
  6. <h2 th:text="${message}"/>
  7. </div>
  8. <div th:if="${path}">
  9. <h2 th:text="${path}"/>
  10. </div>
  11. </body>
  12. </html>