-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (43 loc) · 1.48 KB
/
index.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Socket.io Basics</title>
<link rel="stylesheet" href="/css/bootstrap.min.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="/css/styles.css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div class="vertical-center">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4 well">
<h1 class="text-center">Join chat</h1>
<form class="" action="/chat.html" method="get">
<div class="form-group">
<label for="name">Display name</label>
<div class="input-group">
<span class="input-group-addon">
<i class="glyphicon glyphicon-user"></i>
</span>
<input type="text" name="name" value="" class="form-control">
</div>
</div>
<div class="form-group">
<label for="room">Room name</label>
<div class="input-group">
<span class="input-group-addon">
<i class="glyphicon glyphicon-comment"></i>
</span>
<input type="text" name="room" value="" class="form-control">
</div>
</div>
<div class="form-group">
<input type="submit" name="submit" value="Join chat" class="btn btn-primary btn-block">
</div>
</form>
</div>
</div>
</div>
</div>
</body>
</html>