50 lines
1.8 KiB
HTML
50 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>P2P Chat Media</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<!-- Material Icons -->
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div id="app-container">
|
|
<!-- Main Video Grid -->
|
|
<main id="video-grid">
|
|
<!-- Remote peers will be added here -->
|
|
<div class="status-overlay" id="status-overlay">
|
|
<div class="status-content">
|
|
<h2>Connecting...</h2>
|
|
<div class="spinner"></div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<!-- Local Preview (PIP style) -->
|
|
<div id="local-preview" class="local-pip">
|
|
<video id="local-video" autoplay muted playsinline></video>
|
|
<div class="local-label">You</div>
|
|
</div>
|
|
|
|
<!-- Bottom Control Bar -->
|
|
<footer id="control-bar">
|
|
<button id="toggle-mic" class="control-btn" title="Toggle Microphone">
|
|
<span class="material-icons">mic_off</span>
|
|
</button>
|
|
<button id="toggle-cam" class="control-btn" title="Toggle Camera">
|
|
<span class="material-icons">videocam_off</span>
|
|
</button>
|
|
<button id="toggle-screen" class="control-btn" title="Share Screen">
|
|
<span class="material-icons">screen_share</span>
|
|
</button>
|
|
<div class="separator"></div>
|
|
<div id="connection-status" class="status-indicator" title="Connected">
|
|
<span class="material-icons">wifi_off</span>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|