2024-07-17 01:21:57 +02:00
|
|
|
<!doctype html>
|
2024-07-08 01:00:09 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
2024-07-09 02:55:13 +02:00
|
|
|
<link rel="stylesheet" href="styles.css"/>
|
2024-07-12 01:39:01 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2024-07-08 01:00:09 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2024-10-05 17:20:40 +02:00
|
|
|
<div id="side-panel">
|
|
|
|
|
|
|
|
<div class="conversation">
|
|
|
|
<h2>Lorem</h2>
|
|
|
|
<span>Lorem ipsum blah-de-fuck</span>
|
|
|
|
</div>
|
|
|
|
<div class="conversation">
|
|
|
|
<h2>Caesar</h2>
|
|
|
|
<span>Heyy Markus-chan uwu xoxo. i heard u was in town maybe stop by</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
TODO: other conversations to fill out the panel! filler stuff!
|
|
|
|
-->
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div id="main-panel">
|
|
|
|
|
2024-07-09 22:51:28 +02:00
|
|
|
<div id="header">
|
2024-10-05 17:20:40 +02:00
|
|
|
<button class="rounded-rectangle" onclick="console.log('back')"><- back</button>
|
2024-10-02 02:13:37 +02:00
|
|
|
<h1 id="header-title">NAME</h1>
|
2024-07-09 22:51:28 +02:00
|
|
|
</div>
|
2024-07-08 01:00:09 +02:00
|
|
|
|
|
|
|
<ul id="messages"></ul>
|
|
|
|
|
2024-10-02 02:13:37 +02:00
|
|
|
<p id="typing-indicator">NAME is typing...</p>
|
2024-07-09 22:51:28 +02:00
|
|
|
|
2024-07-09 02:55:13 +02:00
|
|
|
<div id="textbox">
|
2024-10-04 01:04:50 +02:00
|
|
|
<input id="textbox-input" class="rounded-rectangle" type="text" onkeydown="pressSendButton()"></input>
|
2024-07-09 02:55:13 +02:00
|
|
|
<button class="rounded-rectangle" onclick="pressSendButton()">send</button>
|
|
|
|
</div>
|
2024-10-05 17:20:40 +02:00
|
|
|
</div>
|
2024-07-08 01:00:09 +02:00
|
|
|
|
|
|
|
<script src="main.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|