الملفات
codepill-sfu/public/views/activeRooms.html
2025-11-14 08:14:59 +00:00

29 أسطر
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<title id="title">CodePill - 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" />
<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">
<h1>Active Rooms</h1>
<div class="search-bar">
<input class="search-input" id="searchInput" type="text" placeholder="Search by Room ID..." />
<button id="search-btn" class="search-btn">Search</button>
</div>
<button id="refresh-btn" class="refresh-btn">Refresh</button>
<div class="rooms" id="rooms"></div>
</div>
<script defer src="../js/ActiveRooms.js"></script>
</body>
</html>