56 lines
2.4 KiB
HTML
56 lines
2.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title id="title">MiroTalk - Active Rooms.</title>
|
|
<link id="icon" rel="shortcut icon" href="../images/logo.svg" />
|
|
<link id="appleTouchIcon" rel="apple-touch-icon" href="../images/logo.svg" />
|
|
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- https://ogp.me -->
|
|
|
|
<meta property="og:type" content="{{OG_TYPE}}" />
|
|
<meta property="og:site_name" content="{{OG_SITE_NAME}}" />
|
|
<meta property="og:title" content="{{OG_TITLE}}" />
|
|
<meta property="og:description" content="{{OG_DESCRIPTION}}" />
|
|
<meta property="og:image" content="{{OG_IMAGE}}" />
|
|
<meta property="og:url" content="{{OG_URL}}" />
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
|
|
<link rel="stylesheet" type="text/css" href="../css/activeRooms.css" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<div class="header-left">
|
|
<i class="fa-solid fa-tower-broadcast"></i>
|
|
<h1>Active Rooms</h1>
|
|
<span class="room-count-badge" id="roomCountBadge">0 rooms</span>
|
|
</div>
|
|
<button id="refresh-btn" class="refresh-btn" title="Refresh">
|
|
<i class="fa-solid fa-arrows-rotate"></i>
|
|
</button>
|
|
</div>
|
|
<div class="search-bar">
|
|
<i class="fa-solid fa-magnifying-glass"></i>
|
|
<input class="search-input" id="searchInput" type="text" placeholder="Search rooms..." />
|
|
</div>
|
|
<div class="stats-bar" id="statsBar">
|
|
<div class="stat-item">
|
|
<div class="stat-value accent" id="statRooms">0</div>
|
|
<div class="stat-label">Rooms</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-value gold" id="statPeers">0</div>
|
|
<div class="stat-label">Total Peers</div>
|
|
</div>
|
|
</div>
|
|
<div class="rooms" id="rooms"></div>
|
|
</div>
|
|
<script defer src="../js/activeRooms.js"></script>
|
|
</body>
|
|
</html>
|