19 lines
633 B
HTML
19 lines
633 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
|
<title>Steam Chat Admin</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<div id="dropOverlay" class="drop-overlay">释放发送图片</div>
|
|
<div id="lightbox" class="lightbox" hidden>
|
|
<button id="lightboxClose" class="icon-btn lightbox-close" type="button" title="关闭">x</button>
|
|
<img id="lightboxImage" alt="">
|
|
</div>
|
|
<script type="module" src="/app.js"></script>
|
|
</body>
|
|
</html>
|