18 lines
537 B
Text
18 lines
537 B
Text
doctype html
|
|
html
|
|
head
|
|
title #{room} - Webchat
|
|
style.
|
|
textarea, input { width: 100%; }
|
|
textarea { resize: vertical; }
|
|
body
|
|
h1 Room '#{room}'
|
|
textarea#history(rows=20, readonly=true)
|
|
- foreach (m; messages)
|
|
|= m
|
|
|
|
form(action="room", method="POST")
|
|
input(type="hidden", name="room", value=room)
|
|
input(type="hidden", name="nick", value=nick)
|
|
input#inputLine(type="text", name="message", autofocus=true)
|
|
|