|
- <!DOCTYPE html>
- <html>
-
- <head>
- <meta charset="UTF-8">
- <title>证书自动更新系统</title>
- <style>
- * {
- padding: 0;
- margin: 0;
- font-size: 16px;
- line-height: 20px;
- font-family: arial;
- }
-
- a,
- a:visited {
- color: #337ab7;
- text-decoration: none;
- }
-
- header {
- padding: 70px 0 70px 0;
- background-color: #4A6495
- }
-
- h1 {
- font-size: 36px;
- color: #fff;
- font-weight: normal;
- }
-
- code {
- padding: 2px 4px;
- font-size: 90%;
- color: #c7254e;
- background-color: #f9f2f4;
- border-radius: 4px;
- }
-
- .content {
- width: 1000px;
- margin: auto
- }
-
- .wrap {
- width: 1000px;
- margin: auto
- }
-
- .list {
- width: 800px;
- white-space: pre-line;
- line-height: 3;
- }
- </style>
- </head>
-
- <body>
- <header>
- <div class="wrap">
- <h1>证书自动更新系统</h1>
- </div>
- </header>
- <div class="content">
- <div class="list">
- <%= msgs %>
- </div>
- </div>
- </body>
-
- </html>
|