error.html 353 B

1234567891011121314
  1. <!DOCTYPE HTML>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <title>Error Pages</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. </head>
  7. <body>
  8. <p th:text="'Url:' + ${URL}" />
  9. <p th:text="'Error:' + ${error}" />
  10. <p th:text="'Status:' + ${status}" />
  11. <p th:text="'Timestamp:' + ${timestamp}" />
  12. </body>
  13. </html>