summaryrefslogtreecommitdiffstats
path: root/f/templates/index.html
blob: e1cb7b3a23b40428fd1e45d1b0345af6d722fad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!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" class="que">
<table>
	<tr><td>Rivi: </td><td> <input type="text" ng-model="row"></input></td></tr>
	<tr><td> Nimi:</td> <td><input type="text" ng-model="name"></input></td></tr>
<button ng-click="submit();">Add</button>
</table>
<table>
<tr ng-repeat="person in que">
	<td >{{person.row}}</td>
	<td >{{person.name}}</td>
</tr>
</table>
</div>
</body>
</html>