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
23 lines
519 B
HTML
23 lines
519 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Authentication</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="auth">
|
|
<h1>Authcode</h1>
|
|
<form action="/auth" method="POST">
|
|
<input type="password" name="authcode">
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
<img src="/emote/Sure">
|
|
</main>
|
|
</body>
|
|
</html>
|