summaryrefslogtreecommitdiff
path: root/views/pages/lobby.ejs
blob: 80bbf88055cbbb0a430a68fc89d0712dbdebc960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!doctype html>
<html>
<head>
<title>yt-chat</title>
<link rel="stylesheet" href="/css/css.css">
</head>
<body>

<div id="bg"></div>

<div id="login">
  <form>
    please enter your nick..<br>
    <input type="text" id="username">
  </form>
</div>

<div id="lobby">
  <form>
    <input type="text" id="create-room" placeholder="enter a url to make a room">
  </form>
</div>

</body>
<% include ../partials/scripts %>
</html>