1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html lang="en" xmlns:th="http://www.thymeleaf.org">
- <head>
- <meta charset="UTF-8">
- <title>图片管理平台-批量任务通知</title>
- <style>
- body {
- text-align: center;
- margin-left: auto;
- margin-right: auto;
- }
- #welcome {
- text-align: center;
- }
- </style>
- </head>
- <body>
- <div id="notify">
- <h3>您好:<span th:text="${username}"></span></h3>
- <div style="text-align: center; padding: 10px">
- <p th:text="${ocr}"></p>
- <!-- <li class="list-group-item" th:each="person:${people}">-->
- <!-- <span th:text="${person.name}"></span>-->
- <!-- <span th:text="${person.age}"></span>-->
- <!-- <button class="btn" th:onclick="'getName(\''+ ${person.name}+ '\', \''+ ${person.age}+ '\');'">获得信息</button>-->
- <!-- </li>-->
- <!-- <a style="text-decoration: none;" href="#" th:href="@{${url}}" target="_bank">-->
- <!-- <strong>ocr识别结果</strong>-->
- <!-- </a>-->
- </div>
- <div style="text-align: center; padding: 4px">
- 这是一封通知邮件.
- </div>
- </div>
- </body>
- </html>
|