registered.html 704 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" xmlns:th="http://www.thymeleaf.org" layout:decorate="~{layout/layout}">
  3. <head>
  4. <title>Register Success</title>
  5. </head>
  6. <body>
  7. <div layout:fragment="content">
  8. <div class="ui container">
  9. <br />
  10. <div th:if="${user == null}">
  11. You shouldn't be here...
  12. </div>
  13. <div th:if="${user}">
  14. <p>Welcome, <span th:text="${user.username}"></span></p>
  15. <p>
  16. Thank you for registering. An email has been sent to you containing a validation link. You must validate your email address before you
  17. can create assets or write pageReviews.
  18. </p>
  19. </div>
  20. </div>
  21. </div>
  22. </body>
  23. </html>