35 أسطر
417 B
HTML
35 أسطر
417 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Ghaymah SRE Dashboard</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Ghaymah SRE Dashboard</h1>
|
|
|
|
|
|
<div class="card">
|
|
|
|
<h2>Status</h2>
|
|
<p id="status">Checking...</p>
|
|
|
|
|
|
<h2>Response Time</h2>
|
|
<p id="response">-</p>
|
|
|
|
|
|
<h2>Total Requests</h2>
|
|
<p id="requests">-</p>
|
|
|
|
</div>
|
|
|
|
|
|
<script src="script.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|