15 lines
380 B
Text
15 lines
380 B
Text
doctype html
|
|
html
|
|
head
|
|
title Welcome to Webchat
|
|
body
|
|
h1 Welcome to Webchat
|
|
p Choose a chatroom:
|
|
form(action="/room", method="GET")
|
|
p
|
|
label(for="room") Chat room:
|
|
input#room(name="room", type="text", autofocus="true")
|
|
p
|
|
label(for="nick") Your Name:
|
|
input#nick(name="nick", type="text")
|
|
button(type="submit") Go
|