Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Adityasinh-Sodha authored Jan 27, 2025
1 parent 66bf7ac commit ccc2c15
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,29 @@
</head>
<body>
<h1>AirLink</h1>

<div class="device-list">
<div id="devices"></div>
<div class="help">Click to send files, left-click or hold to send messages.</div>
<div id="overlay" class="hidden"></div>
<!-- Message Box -->
<div id="messageBox" class="hidden">
<div id="devices"></div>
<input type="file" id="fileInput" style="display: none;" onchange="sendFile(this)"/>
<div class="help">Click to send files, left-click or hold to send messages.</div>
<div id="overlay" class="hidden"></div>

<!-- Message Box -->
<div id="messageBox" class="hidden">
<p>Send a message:</p>
<input id="messageInput" type="text" placeholder="Type your message" />
<button onclick="sendMessage()">Send</button>
<button onclick="hideMessageBox()">Cancel</button>
</div>
</div>


<!-- Message Popup -->
<div id="messagePopup" class="hidden">
<!-- Message Popup -->
<div id="messagePopup" class="hidden">
<div id="popupContent">
<span id="closePopup">&times;</span>
<p id="popupMessage"></p>
</div>
</div>
</div>

</div>
<!--<div id="currentDevice"></div>-->
Expand Down

0 comments on commit ccc2c15

Please sign in to comment.