summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html23
1 files changed, 0 insertions, 23 deletions
diff --git a/index.html b/index.html
deleted file mode 100644
index 536f644..0000000
--- a/index.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!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>