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-08 01:00:09 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<!-- TODO: conversations -->
|
|
|
|
|
2024-07-09 02:55:13 +02:00
|
|
|
<h1>Hester Gomez</h1>
|
|
|
|
<p class="delay">(Luna, <span id="delay-text"></span>)</p>
|
2024-07-08 01:00:09 +02:00
|
|
|
|
|
|
|
<!-- messages from current conversations -->
|
|
|
|
<ul id="messages"></ul>
|
|
|
|
|
|
|
|
<!-- message box displays the next message to send -->
|
2024-07-09 02:55:13 +02:00
|
|
|
<div id="textbox">
|
|
|
|
<input id="textbox-input" class="rounded-rectangle" type="text" disabled></input>
|
|
|
|
<button class="rounded-rectangle" onclick="pressSendButton()">send</button>
|
|
|
|
</div>
|
2024-07-08 01:00:09 +02:00
|
|
|
|
|
|
|
<script src="main.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|