| 123456789101112131415161718192021 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:th="http://www.thymeleaf.org">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
- <title >隐私政策</title>
- <link rel="stylesheet"/>
- <style>
- body{
- background-color:#F8F8F8;
- }
- </style>
- <body>
- <div th:utext="${privacyPolicy}" ></div>
- <script th:inline="javascript">
- </script>
- </body>
- </html>
|