27 lines
521 B
HTML
27 lines
521 B
HTML
|
<!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>
|