-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (55 loc) · 1.81 KB
/
Copy pathindex.html
File metadata and controls
60 lines (55 loc) · 1.81 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="light dark">
<meta name="description" content="mochiOS services status">
<title>mochiOS Status</title>
<link rel="stylesheet" href="./style.css">
<script src="./app.js" defer></script>
</head>
<body>
<header class="site-header">
<a class="brand" href="/" aria-label="mochiOS Status">
<span>mochiOS Status</span>
</a>
<button id="refresh-button" class="refresh-button" type="button">
再確認
</button>
</header>
<main class="container">
<section class="hero" aria-labelledby="overall-title">
<div id="overall-indicator" class="overall-indicator checking" aria-hidden="true"></div>
<div>
<p class="eyebrow">SYSTEM STATUS</p>
<h1 id="overall-title">状態を確認しています</h1>
<p id="overall-description" class="overall-description">
各サービスのhealth endpointへ接続しています...
</p>
</div>
</section>
<section class="status-panel" aria-labelledby="services-title">
<div class="section-header">
<div>
<p class="eyebrow">SERVICES</p>
<h2 id="services-title">サービス</h2>
</div>
<p id="last-checked" class="last-checked">未確認</p>
</div>
<div id="service-list" class="service-list" aria-live="polite">
<div class="empty-state">監視対象のリストを読み込んでいます...。</div>
</div>
</section>
<section class="information">
<p>
このページはブラウザから各サービスの状態を直接確認します。
</p>
</section>
</main>
<footer class="site-footer">
<span>Copyright (c) 2026 mochiOS team</span>
<span id="auto-refresh-label">60秒ごとに自動更新されます</span>
</footer>
</body>
</html>