Files
echo/front_files/index.html
2025-11-14 04:12:41 +03:00

43 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Echo: True Peer-to-Peer file and text transfers</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="index.css" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
</head>
<body>
<div class="app">
<header class="app-header">
<h1 class="logo">Echo</h1>
</header>
<main class="app-main">
<section class="card">
<div class="actions">
<button class="btn btn-primary" id="create-session-btn">
Create a session
</button>
<div class="divider">or</div>
<div class="join-section">
<label for="session-id" class="label">Join a session</label>
<input type="text" id="session-id" class="input" placeholder="Paste session ID here" />
<button class="btn btn-secondary" id="join-session-btn">
Join
</button>
</div>
</div>
</section>
</main>
</div>
<script src="index.js"></script>
</body>
</html>