registration.html 886 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <title th:remove="all">Template for HTML email with inline image</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}]], thank you for registering at <span th:text="${siteName}"></span>!
  10. </p>
  11. <p>
  12. Please validate your email address using the link below. You will not be able to create assets or post pageReviews until your email has been validated.
  13. </p>
  14. <p><b>Your validation code is: </b> [[${validationCode}]]</p>
  15. <p>To enter this code, navigate to the <b>User Control Panel</b> manually, or click the link below.</p>
  16. <p>
  17. <a th:href="${websiteFullUrl} + '/user/'" th:text="${websiteFullUrl} + '/user/'" ></a>
  18. </p>
  19. <p>
  20. Regards, <br />
  21. <span th:text="${siteName}"></span>
  22. </p>
  23. </body>
  24. </html>