summaryrefslogtreecommitdiffstats
path: root/f/templates/index.html
blob: 822c1626a1a3e2ea011611ae949cfa7a39a3a1ad (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="/f/scripts/angular/angular.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="/f/scripts/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>