notify.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>图片管理平台-批量任务通知</title>
  6. <style>
  7. body {
  8. text-align: center;
  9. margin-left: auto;
  10. margin-right: auto;
  11. }
  12. #welcome {
  13. text-align: center;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div id="notify">
  19. <h3>您好:<span th:text="${username}"></span></h3>
  20. <div style="text-align: center; padding: 10px">
  21. <p th:text="${ocr}"></p>
  22. <!-- <li class="list-group-item" th:each="person:${people}">-->
  23. <!-- <span th:text="${person.name}"></span>-->
  24. <!-- <span th:text="${person.age}"></span>-->
  25. <!-- <button class="btn" th:onclick="'getName(\''+ ${person.name}+ '\', \''+ ${person.age}+ '\');'">获得信息</button>-->
  26. <!-- </li>-->
  27. <!-- <a style="text-decoration: none;" href="#" th:href="@{${url}}" target="_bank">-->
  28. <!-- <strong>ocr识别结果</strong>-->
  29. <!-- </a>-->
  30. </div>
  31. <div style="text-align: center; padding: 4px">
  32. 这是一封通知邮件.
  33. </div>
  34. </div>
  35. </body>
  36. </html>