page-rejected.html 666 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <title>Asset Rejected</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. </head>
  7. <body>
  8. <p th:inline="text">
  9. Hi [[${username}]].<br />
  10. Your asset <b th:text="${page.details.title}"></b> has been reviewed by a member of staff and has been rejected. The reviewer has stated their
  11. reasons below:
  12. </p>
  13. <p th:utext="${reason}"></p>
  14. <p>
  15. Please make the necessary amendments to your page as outlined above and before re-submitting your page for approval.
  16. </p>
  17. <p>
  18. Regards, <br />
  19. <span th:text="${siteName}"></span>
  20. </p>
  21. </body>
  22. </html>