Files
HellionChat/ChatTwo/Http/templates/auth.html
T
Ennea 769d34befd disable inter's on-by-default ligatures, redo icon/emote CSS
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
2024-08-26 22:21:04 +02:00

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>