asset-approval-response.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout/layout}">
  3. <head>
  4. <title>Approve Asset</title>
  5. </head>
  6. <body>
  7. <div layout:fragment="content">
  8. <div class="ui container">
  9. <br />
  10. <div th:if="${error}">
  11. <h4>Action Required</h4>
  12. <p>
  13. The following preliminary errors were encountered and must be fixed before your liveOpenSourceAsset will submitted for an approval request:
  14. </p>
  15. <ul>
  16. <li th:each="msg : ${error}" th:text="${msg}"></li>
  17. </ul>
  18. <p>
  19. Your asset has not been submitted for approval at this time.
  20. </p>
  21. <button onclick="javascript:window.history.back()" class="ui blue button">Back</button>
  22. </div>
  23. <div th:if="${error == null}">
  24. <h4>Submission Accepted</h4>
  25. <p>
  26. Your asset has been successfully submitted for approval. You will recieve an email notifying you of the outcome once your
  27. liveOpenSourceAsset has been approved.
  28. </p>
  29. </div>
  30. </div>
  31. </div>
  32. </body>
  33. </html>