ServerStatus/web/index.html
2023-05-01 21:23:40 +08:00

80 lines
3.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>云监控</title>
<meta name="description" content="云监控">
<meta name="author" content="卢本伟">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<!--[if lt IE 9]>
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
<script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="layui/css/layui.css" />
<link id="layui_theme_css" href="css/light.css" rel="stylesheet">
</head>
<body>
<div class="layui-hide">
<h3>您不应该看到此提示如果看到此提示说明您未能正确加载网站依赖请启用js或换用其他浏览器</h3>
</div>
<noscript>
<h3>您的浏览器不支持js请启用js或换用其他浏览器</h3>
</noscript>
<ul class="layui-nav layui-bg-blue" lay-bar="disabled">
<div class="layui-container">
<li class="layui-nav-item layui-font-20">云监控</li>
<li class="layui-nav-item">
<a href="javascript:;">主题</a>
<dl class="layui-nav-child">
<dd><a href="javascript:changeTheme('dark', true);">暗色</a></dd>
<dd><a href="javascript:changeTheme('light', true);">亮色</a></dd>
</dl>
</li>
</div>
</ul>
<div class="layui-container" style="margin-top: 20px;">
<div class="layui-row layui-col-space15">
<div class="layui-col-md12">
<div class="layui-panel">
<table class="layui-table" lay-even lay-skin="line" lay-size="sm">
<thead>
<tr>
<th id="online_status">🔗协议</th>
<th id="month_traffic">📊月流量↓|↑</th>
<th id="name">📌节点</th>
<th id="type">🗂️虚拟化</th>
<th id="location">🌍位置</th>
<th id="uptime">⏱️在线</th>
<th id="load">负载</th>
<th id="network">🚦网络↓|↑</th>
<th id="traffic">📋总流量↓|↑</th>
<th id="cpu">🎯核芯</th>
<th id="ram">⚡️内存</th>
<th id="hdd">💾硬盘</th>
<th id="ping">🌐CU|CT|CM</th>
</tr>
</thead>
<tbody id="servers">
<!-- Servers here \o/ -->
</tbody>
</table>
<br>
<div id="updated" style="margin: 10px;">最后更新: 几秒前.</div>
</div>
</div>
</div>
<div class="layui-row layui-col-space15">
<div class="layui-col-md12">
<div class="layui-panel layui-text" style="padding: 10px;">
<a href="https://github.com/cppla/ServerStatus" target="_blank">ServerStatus中文版</a> | <a href="mailto:admin@zeyudada.cn" target="_blank">模板作者:卢本伟</a>
</div>
</div>
</div>
</div>
<script src="layui/layui.js"></script>
<script src="js/serverstatus.js"></script>
</body>