summaryrefslogtreecommitdiffstats
path: root/index.html
blob: 536f644648a3042210158100b663fb8111653f22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype HTML>
<html >
<head>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="/client.js"></script>
<title>Jono</title>
</head>
<body ng-app="ioc" >
<div ng-controller="ioctrl" style="font-size:36px;width:400px;margin-left:auto;margin-right:auto;">
<div>Rivi: <input type="text" ng-model="row"></input></div>
<div> Nimi: <input type="text" ng-model="name"></input></div>
<button ng-click="submit();">Add</button>

<table>
<tr ng-repeat="person in que">
	<td >{{person.row}}</td>
	<td >{{person.name}}</td>
</tr>
</table>
</div>
</body>
</html>