-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 949 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1">
<title>匿名即时聊天</title>
<link rel="shortcut icon" href="images/favicon.ico">
<link href="lib/bootstrap.min.css" rel="stylesheet">
<link href="main.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="alert alert-success status">匿名即时聊天</div>
<div class="chat">
<div class="messages well"></div>
<br>
<textarea class="form-control" placeholder="想要说点啥"></textarea>
<br>
<button type="button" class="btn btn-info btn-lg btn-block submitbtn">发射</button>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="http://127.0.0.1:3000/socket.io/socket.io.js"></script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>