1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8"/>
- <link href="/favicon.ico" rel="icon">
- <meta content="width=device-width,initial-scale=1.0,user-scalable=0" name="viewport">
- <style>
- body {
- height: auto !important;
- min-height: 100%;
- }
- body.dark {
- background-color: #141414;
- color: #fff;
- }
- #app {
- height: 100%;
- }
- </style>
- <title>Nginx UI</title>
- </head>
- <body>
- <div id="app"></div>
- <script type="module" src="/src/main.ts"></script>
- </body>
- </html>
|