-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 811 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html ng-app>
<head>
<script src="http://localhost:8080/socket.io/socket.io.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<script src="chat_controller.js"></script>
<link rel="stylesheet" href="chat.css">
</head>
<body>
<div ng-controller="ChatController" class="container">
<div id="room">
<p ng-repeat="message in messages">{{message.text}}</p>
</div>
<form ng-submit="send_message()">
<input type="text" ng-model="message" id="input_message_field" placeholder="Digite uma mensagem"></input>
<input type="submit" value="Send">
</form>
</div>
</body>
</html>