1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| <!DOCTYPE html>
| <html lang="zh-CN">
| <head>
| <meta charset="utf-8">
| <meta http-equiv="X-UA-Compatible" content="IE=edge">
| <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1.0, minimum-scale=1.0" />
| <title>Booting failure</title>
| <style>
| #failure {
| background-color: #dedede;
| font-size: 14px;
| }
| .base {
| position: absolute;
| top: 50%;
| left: 50%;
| transform: translate(-50%, -50%);
| }
| </style>
| </head>
| <body>
| <div id="failure">
| <div class='base'>
| Startup failed, please check frontend service is runing !
| </div>
| </div>
| </body>
| </html>
|
|