<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1">

<title>Friend Tracker</title>

<link rel="stylesheet" href="style.css">

</head>

<body>

<h1>Friend Tracker</h1>


<div id="role-selection">

  <button id="friendBtn">I am Friend (iPhone)</button>

  <button id="seekerBtn">I am Seeker (Android)</button>

</div>


<div id="friendSection" class="hidden">

  <h2>Share Your Location</h2>

  <input id="roomFriend" placeholder="Room code (ABC123)">

  <br>

  <button id="startShare">Start Sharing</button>

  <button id="stopShare" disabled>Stop</button>

  <p id="statusFriend">Not sharing yet</p>

</div>


<div id="seekerSection" class="hidden">

  <h2>Find Your Friend</h2>

  <input id="roomSeeker" placeholder="Room code (ABC123)">

  <br>

  <button id="joinRoom">Join Room</button>

  <div id="arrow">🧭</div>

  <p id="infoSeeker">Waiting for data...</p>

</div>


<script type="module" src="app.js"></script>

</body>

</html>