769d34befd
also: * proper styling for auth page * clean-up of html, css, js * fix scroll indicator eating mouse events * fix scroll indicator on (mobile?) chrome * re-calculate timestamp width on each new message, to account for unknown/unexpected formats like the inclusion of AM/PM
40 lines
1.0 KiB
HTML
40 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Chat2</title>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="static/start.css">
|
|
</head>
|
|
|
|
<body>
|
|
<main class="chat">
|
|
<section id="messages">
|
|
<div class="scroll-container">
|
|
<ol id="messages-list"></ol>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="input">
|
|
<form>
|
|
<div class="select-container">
|
|
<select id="channel-select"></select>
|
|
</div>
|
|
|
|
<div class="input-container">
|
|
<input type="text" id="chat-input" placeholder="Message" enterkeyhint="send">
|
|
<div id="channel-hint"></div>
|
|
</div>
|
|
|
|
<button type="submit">Send</button>
|
|
</form>
|
|
</section>
|
|
</main>
|
|
|
|
<div id="timestamp-width-probe"></div>
|
|
<script src="static/start.js"></script>
|
|
</body>
|
|
</html>
|